$(document).ready(function(){
	$('.boite_produit1-image').each(function(){
		$(this).css({'cursor':'pointer'});
		
		$(this).click(function(){
		   document.location.href=$(this).find('a').attr('href');
		});
		
		
	});
/*
	$('.add_panier').each(function(){
		$(this).mousemove(function(e){
		   if($('#cursor-help').length==0)
		   {
		      $(document).append('<div id="cursor-help" style="position:absolute;z-index:10000;">OOOO<img src="../themes/1000nautique/img/shopping-basket--plus.png" /></div>');
		   }
		   
		   $('#cursor-help').css({'top':e.pageX+'px'});
		   $('#cursor-help').css({'left':e.pageY+'px'});

			alert($('#cursor-help').html());

		});

		//$(this).mouseout(function(){
		//   if($('#cursor-help').length!=0)
		//   	$(document).remove('#cursor-help');
		//});

		//$(this).mouseover(function(){
		//});

		//$(this).mouseover(function(){
			//cursor: url("../themes/1000nautique/img/shopping-basket--plus.png"), pointer;
		//});
	});
*/
});
