$(document).ready(function() {
	$("table#metroMap td").hover(
		function () {
			if ($(this).attr("class") != "") {
				jQuery.each($("table#metroMap td." + $(this).attr("class") + " img"), function() {
					$("<img>").attr("src", $(this).attr("src"));
				});
				jQuery.each($("table#metroMap td." + $(this).attr("class") + " img"), function() {
					$(this).attr("src", $(this).attr("src").replace("_off", "_on"));
				});
			}
		},
		function () {
			if ($(this).attr("class") != "") {
				jQuery.each($("table#metroMap td." + $(this).attr("class") + " img"), function() {
					$(this).attr("src", $(this).attr("src").replace("_on", "_off"));
				});
			}
		}
	);
});
