$(function() {

//menu
$("#menu2").hide();
$("#menu2").css('width','0px');
$(".sous-menu").hide();
$('.contenu-actu').hide();



//produit    
    $("#scrollproduitcontent LI a").hover(
	function () {
	    $(this).children("p.hint").fadeIn(300);
	},
	function () {
	    $(this).children("p.hint").fadeOut(300);
	}
    );
    
    $("#wrapper-produit-noslider LI a").hover(
	function () {
	    $(this).children("p.hint").fadeIn(300);
	},
	function () {
	    $(this).children("p.hint").fadeOut(300);
	}
    );
    
//actus
    $("#menu2").hide();
    
    $("#search-content").focus(function() {

	if( $(this).val() == "un article, une collection,..." ) {
	    $(this).val("");
	}
    
    });
    $("#search-content").blur(function() {
	if( $(this).val() == "" ) {
	    $(this).val("un article, une collection,...");
	}
    });


    
});

