$(document).ready(function(){
						    // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".plus").hide();
						   $(".listeProduit").hover(function(){
						   $(this).fadeTo("slow", 0.5); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
						   
						   });
						   });
$(document).ready(function(){
                           $(".listeProduit").hover(function() {
						   $(".plus").show();
                           /*$("#mycarousel h1").animate({"marginLeft": "16px"}, "slow");*/
                           });
						   });

$(document).ready(function(){
                           $(".listeProduit").mouseout(function() {
						   $(".plus").hide();
                           /*$("#mycarousel h1").animate({"marginLeft": "0px"}, "slow");*/
                           });
                           });
						   

$(document).ready(function(){
                           $(".plus").hover(function() {
						   $(this).show();
                           /*$(this).animate({"marginLeft": "16px"}, "slow");*/
                           });
						   });

$(document).ready(function(){
                           $(".plus").mouseout(function() {
						   $(this).hide();
                           /*$(this).animate({"marginLeft": "0px"}, "slow");*/
                           });
                           });



