$(document).ready(function() {
	
	$(document).pngFix();
	
	$("#top_nav a").mouseover(function(){
	
		imgsrc = $(this).children("img").attr("src");
		matches = imgsrc.match(/_1/);
		if (!matches) {
			imgsrcON = imgsrc.replace(/_0.jpg$/ig,"_1.jpg");
			$(this).children("img").attr("src", imgsrcON);
		}
		
		$("#top_nav a").mouseout(function(){
			$(this).children("img").attr("src", imgsrc);
		});
		
	});

});
