$(document).ready(function(){
    function menuover(){ $(this).children('a:first').addClass('hover').next('div.submenu').fadeIn('fast'); }
    function menuout(){ $(this).children('a:first').removeClass('hover').next('div.submenu').hide(); }
    var menuconfig = { over: menuover,out: menuout, timeout: 500 };
    var search_default = 'un article, une marque';
    $('#search_query').focus(function(){ if($(this).val()==search_default) $(this).val(''); }).blur(function(){ if($(this).val()=='') $(this).val(search_default); }).val(search_default);
    $('#categories_block_header ul.tree:first li.level1').hoverIntent(menuconfig);
    
    /*//Larger thumbnail preview    
    /*$("a.product_image").hover(function() {
        $(this).css({'z-index' : '100'});
        $(this).find('img').addClass("hover").stop().animate({
            marginTop: '-30px',marginLeft: '-52px',
            top: '50%',left: '50%',
            width: '200px',height: '230px',
            padding: '2px','z-index':'101'
        }, 200);    
     } , function() {
        $(this).css({'z-index' : '0'});
        $(this).find('img').removeClass("hover").stop().animate({
        marginTop: '0',marginLeft: '0',
        top: '0',left: '0',
        width: '150px',height: '173px',
        padding: '0px','z-index':'0'
     }, 400);
    });
    
    $("a.product_image img").zoomImgRollover();*/
  
});

