// Menu
jQuery(document).ready(function() {
	jQuery("#navigation ul li").mouseover(function() {
		var the_width = jQuery(this).find("a").width();
		var child_width = jQuery(this).find("ul").width();
		var width = parseInt((child_width - the_width)/2);
		jQuery(this).find("ul").css('left', -width);
	
	});
});
	
jQuery(document).ready(function(){
	//Hide SubLevel Menus
	jQuery('#navigation ul li ul').hide();
	//OnHover Show SubLevel Menus
	jQuery('#navigation ul li').hover(
		//OnHover
		function(){
			//Hide Other Menus
			jQuery('#navigation ul li').not(jQuery('ul', this)).stop();
			//Add the Arrow
			jQuery('ul li:first-child', this).before(
				'<li class="arrow">arrow</li>'
			);
			//Remove the Border
			jQuery('ul li.arrow', this).css('border-bottom', '0');
			// Show Hoved Menu
			jQuery('ul', this).stop('true', 'true').slideDown("fast");
		},
		//OnOut
		function(){
			// Hide Other Menus
			jQuery('ul', this).slideUp();
			//Remove the Arrow
			jQuery('ul li.arrow', this).remove();
		}
	);
});
