// JavaScript Document
$(document).ready(function () {
     
    $('#dropdown li').hover(
							
        function () {
            //show its submenu
            $('ul', this) .stop(true, true).slideDown(350);
 
        },
        function () {
            //hide its submenu
            $('ul', this) .stop(true, true).fadeOut(500);        
        }
    );
     
});
