function initBoutiquesPage(){

$(document).ready( function () { 	

	$(".logo").each(function() {
		$(this).mouseenter(function() {
	 $(this).animate({opacity: '0.8'}, "medium");
  }).mouseleave(function() {
    $(this).animate({opacity: '1'}, "medium");
  });
  });
	
if ($("#desc-mag").length){

showMagdetails($("#desc-mag div:nth-child(1)").attr('id').substring(4,6));

} 
} ) ; 
}


function showMagdetails(idmag){

$("#desc-mag").children().hide();
$("#mag-"+idmag).fadeIn("slow");

//active le slider
//initSlider(idmag);

}

function initSlider(idmag){

$("#desc-mag").stopTime('controlled'); 

var i = 1;

$("#desc-mag").everyTime(3000,'controlled', function() {
    $("#mag-"+idmag+" .magImages").children().fadeOut("slow");
if(i==$("#mag-"+idmag+" .magImages").children().length+1)i=1;

$("#mag-"+idmag+" .magImages img:nth-child("+i+")").fadeIn("slow");
i++;
  });




}
