
//****************Fonction utilisée pour la gestion du menu horizontal*********************
var obj = null;

function checkHover() {
    if (obj) {
        obj.find('ul').fadeOut('fast');    
    } 
}
//*****************************************************************************************


$(document).ready(function() {
    
    //**************Gestion du menu horizontal***********************
    $('.menuTopNiv1 > li').hover(function() {
        if (obj) {
            obj.find('ul').fadeOut('fast');
            obj = null;
        }
        $(this).find('ul').fadeIn('fast');
        $(this).css({'background':'#aaaaaa', 'color':'#000000'});
    }, function() {
        obj = $(this);
        setTimeout("checkHover()",0); 
        $(this).css({'background':'none', 'color':'#ffffff'});
    });
    
    //****************Gestion d'onglets sur la fiche des produits**********************
    $('a.tab').click(function() {
       $('.active').removeClass('active');
       $('.tabs > .liActive').removeClass('liActive');
       
       $(this).addClass('active');
       $(this).parent().addClass('liActive');
       $('.contenu_page > .bloc_produit').hide();
       
       var content = $(this).attr('title');
       $('#'+content).show();
       $('.contenu_page > .fiche_produit_haut').css({'background':'url(../imgs/fiche_produit_haut_'+content+'.png) no-repeat center'});
    });
});