$(document).ready(function(){
	
	$(".menu_items li ul").hide(); // Hide all sub menus
	
	$(".menu_items li a.current").parent().find("ul").slideToggle("normal"); // Slide down the current menu item's sub menu
		
	$(".menu_items li a.nav-top-item").click( // When a top menu item is clicked...
		function () {
			$(this).parent().siblings().find("ul").slideUp("normal"); // Slide up all sub menus except the one clicked
			$(this).next().slideToggle("normal"); // Slide down the clicked sub menu
			return false;
		}
	);
	
	$(".menu_items li a.no-submenu").click( // When a menu item with no sub menu is clicked...
		function () {
			window.location.href=(this.href); // Just open the link instead of a sub menu
			return false;
		}
	);
	
});
