jQuery(document).ready(function () {	
	jQuery("#menu-item-21 a:first, #menu-item-20 a:first, #menu-item-19 a:first").click(function(){ 
        return false;
    });
	jQuery('#navigation li').hover(
		function () {
			//show its submenu
			jQuery('ul', this).slideDown(100);

		}, 
		function () {
			//hide its submenu
			jQuery('ul', this).slideUp(100);			
		}
	);	
});
