// Navigation Menu animation function

$(function() {
		// set opacity to nill on page load
		$("ul#hbar span").css("opacity","0");
		// on mouse over
		$("ul#hbar span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 100);
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 1000);
		});
	});
