// JavaScript Document
$(document).ready(function() {
	var root = '';
	var onclickRoot = 'window.location=';
	if(thisPage=='admin'){
		var root = '../';
		onclickRoot = 'window.location=../';
	}
	$('.navImage img').each(function() {
        	$(this).attr('src', root + $(this).attr('src'));
    });
	$('.navImage img').click(function() {
        	$(location).attr('href',root+$(this).attr('rel'));
    });
	if(thisPage!='admin'){
		$("#"+thisPage).attr("src", $("#"+thisPage).attr("src").split(".").join("_over."));
	}
	$(function() {
	  var currentId = $(".navImage img").attr('id');
		if(thisPage!='admin'){
		  $(".navImage img").hover(function() {
			
		  if($(this).attr('id') !=thisPage){
			$(this).attr("src", root + $(this).attr("src").split(".").join("_over."));
			};
		  }, function() {
			if($(this).attr('id') !=thisPage){
				$(this).attr("src", root + $(this).attr("src").split("_over.").join("."));
			};
		  });
		}
	});
});
