$(document).ready(function() {
	$("#graphicMenu img").each(function() {
		rollsrc = $(this).attr("src");
		rollON = rollsrc.replace(/.png$/ig,"_over.png");
		$("<img>").attr("src", rollON);
	});
	$("#graphicMenu a").mouseover(function(){
		imgsrc = $(this).children("img").attr("src");
		
		matches = imgsrc.match(/_over/);
		if (!matches) {
			imgsrcON = imgsrc.replace(/.png$/ig,"_over.png"); 
			$(this).children("img").attr("src", imgsrcON);
		}	
	});
	$("#graphicMenu a").mouseout(function(){
		$(this).children("img").attr("src", imgsrc);
	});


	$("#topMenu img").each(function() {
		rollsrc = $(this).attr("src");
		rollON = rollsrc.replace(/.jpg$/ig,"-over.jpg");
		$("<img>").attr("src", rollON);
	});
	$("#topMenu a").mouseover(function(){
		imgsrc = $(this).children("img").attr("src");
		
		matches = imgsrc.match(/-over/);
		if (!matches) {
			imgsrcON = imgsrc.replace(/.jpg$/ig,"-over.jpg");
			$(this).children("img").attr("src", imgsrcON);
		}	
	});
	$("#topMenu a").mouseout(function(){
		$(this).children("img").attr("src", imgsrc);
	});
});
