jQuery(document).ready(function() {
	$("#nav a img.hv").hover(
		function() { this.src = this.src.replace("0.","1."); },
		function() { this.src = this.src.replace("1.","0."); }
	);
	map_init();
});

