$(function() {
	setupMenu();
});
/******************************/
function setupMenu() {
	$('div#menu ul li').hover(function() {
		$('ul#' + $(this).attr('id') + '-menu').show();
	}, function() {
		$('ul#' + $(this).attr('id') + '-menu').hide();
	});
	$('div#submenus ul').hover(function() { 
		$(this).show(); 
		thisid = $(this).attr('id');
		parentid = thisid.substring(0,(thisid.length-5));
		$("#"+parentid+" a").addClass('selected');
	}, function() { 
		$(this).hide(); 
		$("#"+parentid+" a").removeClass('selected');
	});
	$('div#submenus ul ul').hover(function() { $(this).show(); }, function() { $(this).show(); });	
}

function toggleSelected(el){
	alert(el);
}

function clearSearch(el){
	if(el.value == 'Search'){
		el.value = '';	
	}
}

function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}

function goTo(url) {
	window.location = url;
}