$(function(){
	$(".swap_map").hover(
		function(){
			tmp = $(this).attr("id").split("_");
			img_id = tmp.pop();
			$("#img_map").attr("src", "/images/map_" + img_id + ".gif");
		},
		function(){
			$("#img_map").attr("src", "/images/map_all.gif");
		}
	);
});

