// initialise plugins
jQuery(function(){
    jQuery('ul.sf-menu').superfish();
});


$(document).ready(function(){
    $("ul.sf-menu sf-vertical").superfish({
        animation: {
            height:'show'
        },   // slide-down effect without fade-in
        delay:     1200               // 1.2 second delay on mouseout
    });
});

//<!-- FUNCAO TROCA DIV MENU PRODUTOS ----------------------------------------------------------
function MenuProdutos(valor){
    if(valor == "Categoria"){
        document.getElementById('divCategoria').style.display = '';
        document.getElementById('divFabricante').style.display = 'none';
    }
    else{
        document.getElementById('divCategoria').style.display = 'none';
        document.getElementById('divFabricante').style.display = '';
    }
}
//-->

//<!-- FUNCAO TROCA DIV PRODUTOS PROMOCÕES / LANÇAMENTOS ----------------------------------------
function VitrineProdutos(valor){
    if(valor == "Promocoes"){
        document.getElementById('divPromocoes').style.display = '';
        document.getElementById('divLancamentos').style.display = 'none';
    }
    else{
        document.getElementById('divPromocoes').style.display = 'none';
        document.getElementById('divLancamentos').style.display = '';
    }
}
//-->

$(function(){
    $("ul.dropdown li").hover(function(){
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    }, function(){
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');
    });

    $("ul.dropdown li ul li:has(ul)").find("a:first").append(" &raquo; ");
});
