$(document).ready(function(){

$("#primarynav_about a:not(.current)").hover(function(){

	$(this).stop().animate({color: '#ffffff', backgroundColor: '#8ba022'}, "fast");
}, function() {
    $(this).stop().animate({color: '#655b52', backgroundColor: '#ffffff'}, "fast");

		return false;
	});

$("#primarynav_programs a:not(.current)").hover(function(){

	$(this).stop().animate({color: '#ffffff', backgroundColor: '#b00049'}, "fast");
}, function() {
    $(this).stop().animate({color: '#655b52', backgroundColor: '#ffffff'}, "fast");

		return false;
	});

$("#primarynav_apply a:not(.current)").hover(function(){

	$(this).stop().animate({color: '#ffffff', backgroundColor: '#00728a'}, "fast");
}, function() {
    $(this).stop().animate({color: '#655b52', backgroundColor: '#ffffff'}, "fast");

		return false;
	});

$("#primarynav_grants a:not(.current)").hover(function(){

	$(this).stop().animate({color: '#ffffff', backgroundColor: '#faa61a'}, "fast");
}, function() {
    $(this).stop().animate({color: '#655b52', backgroundColor: '#ffffff'}, "fast");

		return false;
	});

$("#primarynav_resources a:not(.current)").hover(function(){

	$(this).stop().animate({color: '#ffffff', backgroundColor: '#6c8cc7'}, "fast");
}, function() {
    $(this).stop().animate({color: '#655b52', backgroundColor: '#ffffff'}, "fast");

		return false;
	});

});
