$(document).ready(function(){

	/* Page Index */
	//Larger thumbnail preview
	
	$("div.thumb_index div.box_catalogue").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
	 .animate({
	 marginTop: '-35px',
	 marginLeft: '-35px',
	 top: '9%',
	 left: '15%',
	 width: '290px',
	 height: '305px',
	 padding: '0'
	 }, 300);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
	 .animate({
	 marginTop: '0',
	 marginLeft: '0',
	 top: '0',
	 left: '0',
	 width: '280px',
	 height: '295px',
	 padding: '0'
	 }, 400);
	});
	
	/* Page Produits */
	//Larger thumbnail preview
	
	$("div.thumb div.box_product").hover(function() {
	//activer la catégorie correspondante dans la liste de gauche
	var encodeCategorie= $(this).attr("rel");
	$("#"+encodeCategorie).addClass('actif');
	
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
	 .animate({
	 marginTop: '-35px',
	 marginLeft: '-35px',
	 top: '12%',
	 left: '12%',
	 width: '250px',
	height: '210px',
	 padding: '5px'
	 }, 200);
	
	} , function() {
	//Rétalir la catégorie dans la liste de gauche au RollOut
	var encodeCategorie= $(this).attr("rel");
	$("#"+encodeCategorie).removeClass("actif").stop()
		
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
	 .animate({
	 marginTop: '0',
	 marginLeft: '0',
	 top: '0',
	 left: '0',
	 width: '240px',
	 height: '200px',
	 padding: '5px'
	 }, 400);
	});

}); 
