$(document).ready(function(){
	$("#nav li:not(.active) a").each(function() {
		$(this).hover(hoverNav1, hoverNav2);
	});
	function hoverNav1() {
		$(this).addClass('hvr');
		$(this).animate({opacity: 0}, {queue:false, duration: 0});
		$(this).animate({opacity: 1.0}, {queue:false, duration: 600});
		return false;
	}
	function hoverNav2() {
		$(this).removeClass('hvr');
		$(this).animate({opacity: 0}, {queue:false, duration: 0});
		$(this).animate({opacity: 1.0}, {queue:false, duration: 600});
		return false;
	}
});
