if ($.browser.msie && $.browser.version.substring(0,1) === '6') {
	if(document.location.href.indexOf("updateBrowser") === -1) {
		document.location.href = "/updateBrowser.aspx"
	}
}

$(function() {
	$(".navigation div").hover(function() {
		if($(this).attr("class") !== "selected") {
			$(this).addClass("hover");
		}
	},
	function() {
		if($(this).attr("class") !== "selected") {
			$(this).removeClass("hover");
		}
	});
	
	var navSelector = $("#navSelector").val();
	$(".navigation div").each(function(i, item) {
		if($(item).children("a").text() === navSelector) {
			$(item).addClass("selected");
		}
	});
});
