$(document).ready(function () {
$('#main-menu li').hover(function () {
$('ul', this).slideUp(0).stop(true, true).slideDown(400);
},
function () {
$('ul', this).css("display", "block").stop(true, true).delay(500).slideUp(500);
});
});
$('#main-menu li').hover(function () {
$('ul', this).slideUp(0).stop(true, true).slideDown(400);
},
function () {
$('ul', this).css("display", "block").stop(true, true).delay(500).slideUp(500);
});
});
Comments
Post a Comment