	
	$(document).ready(function() {
		
		$("#navigation img").each(function() {
			rollsrc = $(this).attr("src");
			rollON = rollsrc.replace(/.jpg$/ig,"_over.jpg");
			$("<img>").attr("src", rollON);
		});
		
		$("#navigation 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);
			}
			
		});
		$("#navigation a").mouseout(function(){
			$(this).children("img").attr("src", imgsrc);
		});
		
		$("#index_sectionlinks img").each(function() {
			rollsrc = $(this).attr("src");
			rollON = rollsrc.replace(/.jpg$/ig,"_over.jpg");
			$("<img>").attr("src", rollON);
		});
		
		$("#index_sectionlinks 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);
			}
			
		});
		$("#index_sectionlinks a").mouseout(function(){
			$(this).children("img").attr("src", imgsrc);
		});		
		
	});
	