$(document).ready(function(){
	$('div#nav td a img').hover(function(){
		this.src = this.src.replace('0', '1'); 
	},
	function() {
		this.src = this.src.replace('1', '0'); 
	});
});
