//menu //$(document).ready(function(){ // $('li.mainlevel').mousemove(function(){ // $(this).find('ul').slideDown();//you can give it a speed // }); // $('li.mainlevel').mouseleave(function(){ // $(this).find('ul').slideUp("fast"); // }); //}); $(document).ready(function () { // hover property will help us set the events for mouse enter and mouse leave $('li.mainlevel').hover( // When mouse enters the .navigation element function () { //Fade in the navigation submenu $('ul', this).fadeIn(); // fadeIn will show the sub cat menu }, // When mouse leaves the .navigation element function () { //Fade out the navigation submenu $('ul', this).fadeOut(); // fadeOut will hide the sub cat menu } ); });