$(document).ready(function(){
		$('.menu_body').hide();
		$("#nav li").mouseover(function(){
			$('.menu_body').hide();
	 		var getid = $(this).attr('id');
			var getid = "#sub_"+getid;
			$(getid).show();			
		});	
		$("#headline_logo").mouseover(function(){
			$('.menu_body').hide();		
		});	
		$("#content").mouseover(function(){
			$('.menu_body').hide();		
		});	
		$("#leftspace").mouseover(function(){
			$('.menu_body').hide();		
		});	
		$("#rightspace").mouseover(function(){
			$('.menu_body').hide();		
		});	
});



