$(document).ready(function() {
	$(".navheadoff").hover(
		function () {
			$(this).removeClass("navheadoff");
			$(this).addClass("navheadon");
		}, 
		function () {
			$(this).removeClass("navheadon");
			$(this).addClass("navheadoff");
		}
	);
	
	$(".navheadoff").click(
		function () {
			window.location = $(this).find('a').attr("href");
			return false;
		}
	);
	
	$(".navheadon").click(
		function () {
			window.location = $(this).find('a').attr("href");
			return false;
		}
	);
});