$(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="arrows">arrow</li>'
			);

			//Remove the Border
			$('ul li.arrows', this).css('border-bottom', '0');

			// Show Hoved Menu
$('ul', this).stop(true, true).slideDown();
},
//OnOut
function(){
// Hide Other Menus
$('ul', this).stop(true, true).slideUp();

			//Remove the Arrow
			$('ul li.arrows', this).remove();
		}
	);

});
