$(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(); });	
}
