// JavaScript Document
jQuery( document).ready(function(){

	//Hide SubLevel Menus
	$('#navi ul li ul').hide();

	//OnHover Show SubLevel Menus
	$('#navi ul li').hover(
		//OnHover
		function(){
			//Hide Other Menus
			$('#navi ul li').not($('ul', this)).stop();

			// Show Hoved Menu
			$('ul', this).fadeIn("fast");
		},
		//OnOut
		function(){
			// Hide Other Menus
			$('ul', this).hide();

			//Remove the Arrow
			$('ul li.arrow', this).remove();
		}
	);

});
