jQuery(document).ready(function()
{
	//Drop Down Menus
	jQuery('#nav_top li').mouseenter(function() {
		jQuery(this).children('.submenu').stop(true, true).slideDown('fast');
	})
	.mouseleave(function() {
		jQuery(this).children('.submenu').stop(true, true).slideUp();
	});
});

