﻿$(document).ready(function() {
    $('.navHome .navItem li div').hover(
        function() {
            $(this).parent().prev().removeClass('bgAtv');
            $(this).find('ul').fadeIn();
            $(this).find('.legenda').fadeIn(700);
            $(this).css('background-position','20px top');
        },
        function() {
            $(this).parent().prev().addClass('bgAtv');
            $(this).find('.legenda').hide();
            $(this).find('ul').fadeOut(0);
            $(this).css('background-position', '20px bottom');
        }
    );
    
    ajustaBottom();

});



function ajustaBottom() {
    var aw;
    if (navigator.appName == 'Microsoft Internet Explorer') {//if IE 
        var aw = document.documentElement.clientHeight;
    }
    else {
        var aw = window.innerHeight;
    }
    $('.homeBg').css('height', aw);
}