$(function() {
	$('div#nav > a > img').hover(
		function () {
			if ($(this).attr('src').indexOf('_ovr')==-1) {
				file = $(this).attr('src').replace('.png','');
				$(this).attr('src', file+'_ovr.png');
			}
		},
		function () {
			if ($(this).attr('src').indexOf('_ovr')!=-1) {
				file = $(this).attr('src').replace('_ovr.png','');
				$(this).attr('src', file+'.png');
			}
		}
	);
});