
$(document).ready(function() {
    topMenuHover();
});

function topMenuHover() {
    $('ul.ul-topMenu li').hover(function() {
        $(this).children('a').stop().animate({
            color: '#d82e9a'
        }, 500);
    }, function() {
        $(this).children('a').stop().animate({
            color: '#f7f7f7'
        }, 350);
    });
}

function topMenuDropDown() {
    $('li.test').hover(function(e) {
        //e.preventDefault();
        $(this).children('ul').show().stop().animate({
            opacity: 1,
            top: '55'
        }, 500, 'easeOutBack', function() { $(this).css("z-index", "10"); return false; });
    },
    function() {
        //$(this).children('ul').css("z-index", "-1");
        $(this).children('ul').stop().delay(1000).animate({
            top: '10',
            opacity: 0
        }, 150, 'easeInBack', function() { $(this).hide(); return false; });
    });
}