﻿$(function() {
    /*var config = {
    sensitivity: 1, // number = sensitivity threshold (must be 1 or higher)    
    interval: 0, // number = milliseconds for onMouseOver polling interval
    over: showElenco, // function = onMouseOver callback (REQUIRED)    
    timeout: 2000, // number = milliseconds delay before onMouseOut
    out: hideElenco // function = onMouseOut callback (REQUIRED)    
    };

    $("#ctl00_contentMenu_menuLb_2").hoverIntent(config);
    $("#contentMenu_menuLb_2").hoverIntent(config); */

    $('.menuItem').mouseenter(function(e) {
        $(this).addClass("menuItemHover");
    });

    $('.menuItem').mouseleave(function(e) {
        $(this).removeClass("menuItemHover");
    });

    //    $('.menuLink').mouseover(function(e) {
    //        $(this).animate({
    //            width: 'show',
    //            height: 'show'
    //        }, {
    //            duration: 1000,
    //            specialEasing: {
    //                width: 'linear',
    //                height: 'easeOutBounce'
    //            },
    //            complete: function() {                
    //            }
    //        });
    //    });

});

/*
function showElenco() {
    $('#elenco').fadeIn(200);
}

function hideElenco() {
    $('#elenco').fadeOut(200);
}*/
