// make the current page show as active on the nav
$(document).ready(function() {
	$("#nav a").each(function() {
	if(this.href == window.location || this.href == document.location.protocol + "//" + window.location.hostname + window.location.pathname)
		 $(this).addClass("active");
	})
/*	
	// animate hover effects
	// set opacity to nill on page load
	$("ul#nav span").css("opacity","0");
	// on mouse over
	$("ul#nav span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, "fast");
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, "fast");
	});
*/});
