$(document).ready(function() {
	//rollovers for the menu
	$(".menuImage").hover(
		function(){
			if($(this).attr("src").indexOf("_glow") == -1) {
				var newSrc = $(this).attr("src").replace(".png","_glow.png");
				$(this).attr("src",newSrc);
			}
		},
		function(){
			if($(this).attr("src").indexOf("_glow.png") != -1) {
				var oldSrc = $(this).attr("src").replace("_glow.png",".png");
				$(this).attr("src",oldSrc);
			}
		}
	);
	
	//rollover for the header
	$("#headerMenu").hover(
		function(){
			if($(this).attr("src").indexOf("_glow") == -1) {
				var newSrc = $(this).attr("src").replace(".png","_glow.png");
				$(this).attr("src",newSrc);
			}
		},
		function(){
			if($(this).attr("src").indexOf("_glow.png") != -1) {
				var oldSrc = $(this).attr("src").replace("_glow.png",".png");
				$(this).attr("src",oldSrc);
			}
		}
	);
});

