
function affiche_produit(id,img)
{
	document.getElementById('mainImage').href='product.php?id_product='+id;
	document.getElementById('categoryImage').src=img; 
	document.getElementById('cat_desc').innerHTML=document.getElementById('right_block_'+id).innerHTML;
	document.getElementById('cat_desc').style.visibility="visible";
	
}
$(document).ready(function(){	
	$('#products_list ul li:first-child a img').click(); 
$("#products_list").easySlider({
	auto: false, 		
	continuous: false, 		
	
	nextId: "slider1next", 		
	prevId: "slider1prev" ,
	nbElements: 3
	}); 	if(document.URL.indexOf("search.php")!=-1) 	$('#slider1prev').css('margin-top','-22px');
});
