$(document).ready(function(){
	var replier = 0;
	
	$("#replier").mouseover(function (){
		$(this).css("cursor","pointer");
	});
	$(".product div.replier").mouseover(function (){
		$(this).css("cursor","pointer");
	});
	$(".product div.savoir_plus").mouseover(function (){
		$(this).css("cursor","pointer");
	});
	
	$(".product div.replier").click(function(){
		$(this).parent().addClass('light');
	});
	$("#replier").click(function(){
		if(replier == 0)
		{
			$(this).addClass('deplier');
			replier = 1;
			
			$("#categories li").hide();
			$("#categories li a.active").parent().show();
			$(this).html('Déplier');
		}else
		{
			$(this).removeClass('deplier');
			replier = 0;
			$("#categories li").show();
			$(this).html('Replier');
		}
	});
	
	$(".product div.savoir_plus").click(function(){
		$(this).parent().parent().removeClass('light');
	});
});
