$("document").ready(function(){

	$("a.indbtn").hover(function() {
		$(this).animate({ backgroundColor: "#8bda52" }, 300);
		},function() {
		$(this).animate({ backgroundColor: "#6fca2d" }, 300);
	});
	
	$("a.grpbtn").hover(function() {
		$(this).animate({ backgroundColor: "#b8e06c" }, 300);
		},function() {
		$(this).animate({ backgroundColor: "#a8d64f" }, 300);
	});
	
	$("a.trmbtn").hover(function() {
		$(this).animate({ backgroundColor: "#6ac9d5" }, 300);
		},function() {
		$(this).animate({ backgroundColor: "#4bb5c2" }, 300);
	});
	
	$("a.uhexbtn").hover(function() {
		$(this).animate({ backgroundColor: "#5f96d0" }, 300);
		},function() {
		$(this).animate({ backgroundColor: "#437ebd" }, 300);
	});


});
