// JavaScript Document

var curWindow = window.location.pathname.replace("/","").replace(".html","")	

if(curWindow.indexOf("index") > -1 || curWindow == ''){
	curWindow = "home";	
//	alert(curWindow);
}

$(".topNavTab a img").mouseover(function(){									 
	var bg = $(this).attr("src");
	var newBg = bg.replace(".png","_on.png");

	if(bg.indexOf(curWindow) < 0 ) // only use hover if not the active tab
	{
		$(this).attr("src",newBg);
	}	
	
});

$(".topNavTab a img").mouseout(function(){
	var bg = $(this).attr("src");
	var newBg = bg.replace("_on.png",".png");
	
	if(bg.indexOf(curWindow) < 0) // only use hover if not the active tab
	{
		$(this).attr("src",newBg);
	}
	
});

