//Main Nav Drop Downs
$(function(){

	//Hide SubLevel Menus
	$('#nav ul li ul').hide();

	//OnHover Show SubLevel Menus
	$('#nav ul li').hover(
		//OnHover
		function(){
			//Hide Other Menus
			$('#nav 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(250);
			
			var the_width = $(this).find("a").width();
			var child_width = $(this).find("ul").width();
			var width = parseInt((child_width - the_width)/2);
			$(this).find("ul").css('left', -width);

		},
		//OnOut
		function(){
			// Hide Other Menus
			$('ul', this).slideUp();

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

});

//Sub Nav Hover
$(function () {
	$('#sidebar ul.nav li a').mouseover(function () {
	$(this).animate({ backgroundPosition:"17px 12px", paddingLeft: "30px" }, 150 );
	});
});
$(function () {
	$('#sidebar ul.nav li a').mouseout(function () {
	$(this).animate({ backgroundPosition:"7px 12px", paddingLeft: "20px" }, 500 );
	});
});
