$(function(){
	$('#submenu ul li').not('.selected').find('ul').hide();	 
	$('#submenu ul li a').click(function() {	 
		var checkElement = $(this).next();	 
		if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
		 	//go to link	
		}
		if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {	 
			$('#submenu ul ul:visible').slideUp('fast');	 
			checkElement.slideDown('slow');			 
			return false; 
		}
	});
	$('#submenu ul li a').dblclick(function(){
		location.href = $(this).attr("href");
	});
});