//Global img
$(document).ready(function(){

	// detection de internet explorer 6
	if($.browser.msie && $.browser.version <= 6){
      alert("vous utilisez un navigateur obsolète ou ancien qui n'ai pas compatible avec ce site, il risque d'y avoir quelques problèmes d'affichage \n\n Veuillez télécharger la nouvelle version de votre navigateur ou alors utiliser un navigateur moderne comme : \n\n firefox \n safari \n opera" );
   }
	
	$("img").bind("mouseover",function(){
		$(this).stop().animate({ 
	        opacity: 0.5,
        }, 500 );
		
	});
	
	$("h1#logo img").unbind();
	
	$("img").bind("mouseout",function(){
		$(this).stop().animate({ 
	        opacity: 1,
        }, 500 );
		
	});
	
	$("img").unbind("mouseout",function(){
		$(this).stop().animate({ 
	        opacity: 1,
        }, 500 );
		
	});
	
	
	 
	
});

//Produit phare affichage bulle
$(document).ready(function(){
	
	// cache tous les titre H5
	 $("#featured-products_block_center h5").hide();
	
});




