function mainmenu(){
	$( "#global_navi li" ).hover(
		function(){
			$( this ).find( "ul" ).animate({
											height:"show",
											opacity:"show"
											},
											250);
		},
		function(){
			$( this ).find( "ul" ).animate({
											height:"hide",
											opacity:"hide"
											},
											230);
		}
	);
}
