
	$(function() {
		$("#nav form input:image[id$='_image']").each(function() {
			$(this).mouseover(function() {
				$(this).attr("src", $(this).attr("src").replace('/off/', '/roll/'));
			});
			$(this).mouseout(function() {
				$(this).attr("src", $(this).attr("src").replace('/roll/', '/off/'));
			});
			$(this).mousedown(function() {
				$(this).attr("src", $(this).attr("src").replace('/roll/', '/on/'));
			});
		});
	});