$(document).ready(function() {
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme:'facebook',
		allow_resize:false
	});
	$("#loupe").click(function() {
		$("#img_produit a").click();
	});
	$("#recherche").focus(function() {
		if ($(this).val()=="> Rechercher une référence")
		$(this).val("");
	});
	$("#recherche").blur(function() {
		if ($(this).val()=="") {
			$(this).val("> Rechercher une référence");
			$("#loader_recherche").hide();
			$("#noresult").hide();
		}
	});
	$("#recherche").keyup(function(e) {
		if (e.keyCode=="13") {
			$("#noresult").hide();
			$("#loader_recherche").show();
			$.ajax({
				type: "GET",
				url: "js/ajax.php",
				data: "mod=3&id="+ $(this).val(),
				success: function(msg){
					$("#loader_recherche").hide();
					if (msg=="aucun") $("#noresult").show();
					else {
						$("body").append(msg);
					}
				}
			});
		}
	});
	$("#picto_categorie a").hover(function() {
		var id = $(this).attr("id");
		id = id.replace("picto", "");
		if ($("#titre_produit").length != 0) {
			$("#titre_produit2 #titre").html($(this).attr("alt"));
			$("#titre_produit2").css("background", "url(\"images/categories_details/details_picto_"+id+".jpg\") no-repeat").fadeIn();
		}
		else {
			var color=new Array("ff5846", "25a425", "fc992e", "c7e439", "14c5ff", "ac67b7", "488bda", "fc578d");
			var color2=new Array("ffffff", "ffffff", "ffffff", "87858b", "ffffff", "ffffff", "ffffff", "ffffff");
			$("#titre_produit2").html($(this).attr("alt")).css("background", "#"+color[id-5]).css("color", "#"+color2[id-5]).fadeIn();
		}
	}, function() {
		$("#titre_produit2").hide();
	});

	$(".barre_info").children().each(function() {
		$(this).hover(function() {
			var id = $(this).attr("class")
			dec = id.split(" ");
			id = dec[1].replace("barre_info", "");
			$(this).parent().children(".barre_info_legende"+id).show();
		}, function() {
			var id = $(this).attr("class")
			dec = id.split(" ");
			id = dec[1].replace("barre_info", "");
			$(this).parent().children(".barre_info_legende"+id).hide();
		})
	});

	$(".barre_info3").click(function() {
		$(this).parent().parent().children(".horaire_ouverture").slideDown();
		return false;
	})

	$(".barre_info4").click(function() {
		$(this).parent().parent().slideUp();
		return false;
	})
})

function change_produit(id) {
	$.ajax({
		type: "GET",
		url: "js/ajax.php",
		data: "mod=1&id="+ id,
		success: function(msg){
			$("#info_produit").html(msg);
		}
	});
	$.ajax({
		type: "GET",
		url: "js/ajax.php",
		data: "mod=2&id="+id,
		success: function(msg){
			$("#img_produit").fadeOut("fast", function() {
				$("#img_produit a").remove();
    			$("#img_produit").html(msg).fadeIn(350, function() {
					$("a[rel^='prettyPhoto']").prettyPhoto({
						theme:'facebook',
						allow_resize:false
					});
				});
			});
		}
	});
}

function goAccueil() {
	window.location.href="index.php";
}


function departement(num) {
	$("#dpt").val(num);
	$("#form_magasins").submit();
}

