$(document).ready(function() {
	
	// NAVIGATION HOVER EFFECTS
	
	// Header Nav
	
	// hide hover image
	$("#header ul span").css("opacity","0");
	// on mouse over
	$("#header ul span").not("#header ul li.current span").hover(function () {
		// fade in hover image
		$(this).stop().animate({
			opacity: 1
		}, 500);
	},
	// on mouse out
	function () {
		// fade out hover image
		$(this).stop().animate({
			opacity: 0
		}, 500);
	});
	
	
	// Procedure Nav
	
	// hide hover image
	$("#includeNav span").css("opacity","0");
	// on mouse over
	$("#includeNav span").not("#includeNav li.current span").hover(function () {
		// fade in hover image
		$(this).stop().animate({
			opacity: 1
		}, 500);
	},
	// on mouse out
	function () {
		// fade out hover image
		$(this).stop().animate({
			opacity: 0
		}, 500);
	});
	
	
	// Secondary/Side Nav
	
	$("#mainNav a").hover(function(){
		$(this).animate({color: '#628333'},500);
			},function(){
		$(this).animate({color: '#808080'},500);
	});

});
