$(document).ready(function() {
	$('#top_nav img.off').mouseover(function() {
		$(this).attr('src', $(this).attr('src').replace(/\.jpg$/, '_on.jpg'));
		}).mouseout(function() {
		$(this).attr('src', $(this).attr('src').replace(/_on\.jpg$/, '.jpg'));
	});
});