/*$(document).ready(function(){
	$("div.a_la_une a").bind("click", null, gestion_from.set_from);
});*/

var gestion_from = {
	options: { path: '/', expires: 10 },
	initialisation: function() {
		//alert("init fil arianne");
		$("div.a_la_une a").bind("click", {from: "A la une"}, gestion_from.set_from);
		$("div.top_vente a").bind("click", {from: "Le choix des abonn&eacute;s"}, gestion_from.set_from);
		$("div.top_venteCategories a").bind("click", {from: "Le choix des abonn&eacute;s"}, gestion_from.set_from);
		$("div.magazines a").bind("click", {from: "Tous nos magazines"}, gestion_from.set_from);
		$("div.fromCadeau a").bind("click", {from: "aboCadeau"}, gestion_from.set_from);
	},
	set_from: function(event) {
		$.cookie("abolibre_fil_arianne", event.data.from, gestion_from.options); 
	}
}
