$(document).ready(function () {
	$("#navigation ul li img, #destinationsTabs img, #destinationFootTabs img, #sureNav img").hover(function(){
		if($(this).hasClass("active") == false) {
			newSrc = $(this).attr("src").split("_0.");
			$(this).attr("src", newSrc[0] + "_1." + newSrc[1]);
		}
		if($(this).parent().parent().parent().hasClass("toggleNav")) {
			toggleSubNav = $(this).parent().attr("class");
			$("#subNavContainer ul").hide();
			$("#"+toggleSubNav).show();
		}
		
	},function(){
		if($(this).hasClass("active") == false) {
			newSrc = $(this).attr("src").split("_1.");
			$(this).attr("src", newSrc[0] + "_0." + newSrc[1]);
		}
	});	
	
	$("a.newWindow").click(function() {
		window.open($(this).attr("href"));  
		return false;
	});

});