$(document).ready(function(){	
	$(".topMenuLI").bind("mouseenter", function(){
		var submenu = $(this).attr("name") ;
		if (submenu == undefined) $("#submenu0").show();
		$(".subs").each(function(i){
			$(this).hide();
		});
		
		$("#submenu"+submenu).show();
		if ($("#submenu"+submenu).text() == ""){
			$("#submenu0").show(); 
		}
	});
	
	$("#displayNews").bind("mouseenter", function(){
		$(".subs").each(function(i){
			$(this).hide();
		});
		$("#submenu0").show();
	});
});

