$(function(){



	//Hide SubLevel Menus

	$('#header ul li ul').hide();



	//OnHover Show SubLevel Menus

	$('#header ul li').hover(

		//OnHover

		function(){

			//Hide Other Menus

			$('#header ul li').not($('ul', this)).stop();



			//Add the Arrow

			$('ul li:first-child', this).before(

				'<li class="arrow">arrow</li>'

			);



			//Remove the Border

			$('ul li.arrow', this).css('border-bottom', '0');



			// Show Hoved Menu

			$('ul', this).slideDown();

		},

		//OnOut

		function(){

			// Hide Other Menus

			$('ul', this).hide();



			//Remove the Arrow

			$('ul li.arrow', this).remove();

		}

	);



});

 

