$(function() {
			
	//Dropdown menu
	//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).stop(true, true).slideDown({duration:200});

		},

		//OnOut
		function(){
			// Hide Other Menus
			$('ul', this).stop(true, true).slideUp({duration:200});

			//Remove the Arrow
			//$('ul li.arrow', this).remove();
		}
	);
		
});
