// JavaScript Document

$(document).ready(function() {
    
	$('.nav a img').hover(
		function(){
				if($(this).attr("src").indexOf("_on") == -1) {
						var newSrc = $(this).attr("src").replace(".png","_on.png");
						$(this).attr("src",newSrc);
				}
		},
		function(){

				if($(this).parent().attr("href") != window.location.href) {
					if($(this).attr("src").indexOf("_on.png") != -1) {
						var oldSrc = $(this).attr("src").replace("_on.png",".png");
						$(this).attr("src",oldSrc);
					}
			   }
		}
	); 
	var activePage = window.location.pathname.substr(1);
	$("a[href="+activePage+"] img").trigger("mouseover"); 
});