/*	softee tabs. not essential, and defalt css is acceptable substitute. */

$(document).ready(function(){

	$(".navH a:not('.on')").hover(
		function () {
			$(this).animate( { backgroundColor:"#66c2e0" },"fast");
			$(this).css( { color:"#09C" });
		}, 
		function () {
			$(this).animate( { backgroundColor: "#d1d7d9" },"fast");
			$(this).css( { color:"#09C" });
		}
	);

	$(".navH a").click(
		function () {
			$(this).css( { backgroundColor:"#09C" });
			$(this).css( { color:"#FFF" });
		});

});

