$(document).ready(function() {
    $("#rodapeConteudo").css("position", "relative");
    $("#listamarcas ul li:last").css("float", "right").css("margin-right", "0");
    showItensLetra("a");
    $(".deAAZ li").hover(
        function() {
            $(this).addClass("deAAZHover")
        }
        , function() {
            $(this).removeClass("deAAZHover")
        });
        
    $(".deAAZ li").click(function() {
        $(".btnLetraClicked").removeClass("btnLetraClicked");
        $(this).addClass("btnLetraClicked");

        showItensLetra($(this).html().toString().toLowerCase());      
    });

    $('#buscaProdutos').autocomplete("/visualizar/lista-produto", {
        selectFirst: false
    }).result(function(event, data, formatted) {
        location.href = "/visualizar/detalhe/produto/"+data[1];
    });

    $(window).scroll(function() {
        if($(window).scrollTop() < ($(document).height()-$('#menu_position_fixed').height())-200)
            if($(window).scrollTop()>206) {
                $('#menu_position_fixed').css('top', $(this).scrollTop()-226 + "px");
            } else {
                $('#menu_position_fixed').css('top', "0px");
            }

    });

    setTimeout(function() { 
        $("#menu_container").height($("#conteudo").height());
    }, 200);
});

function showItensLetra(letra) {
    $(".categoriasDeAAZ li").hide();
    $(".letra"+letra).show();

    if($(".letra"+letra).length==0) {
        $(".letrasemopcao").show();
    }
}
