$(function map() {
	$("#map1").bind('mouseover', function (event) {
		$(".s_map_block img").hide();
		$("#m6").show();
		$(".s_region").hide();
		$("#r1").show();
		event.stopPropagation();
	});
	$("#map6").bind('mouseover', function (event) {
		$(".s_map_block img").hide();
		$("#m1").show();
		$(".s_region").hide();
		$("#r2").show();
		event.stopPropagation();
	});	
	$("#map2").bind('mouseover', function (event) {
		$(".s_map_block img").hide();
		$("#m3").show();
		$(".s_region").hide();
		$("#r3").show();
		event.stopPropagation();
	});
	$("#map3").bind('mouseover', function (event) {
		$(".s_map_block img").hide();
		$("#m2").show();
		$(".s_region").hide();
		$("#r4").show();
		event.stopPropagation();
	});
	
	$("#map4").bind('mouseover', function (event) {
		$(".s_map_block img").hide();
		$("#m7").show();
		$(".s_region").hide();
		$("#r5").show();
		event.stopPropagation();
	});
	$("#map5").bind('mouseover', function (event) {
		$(".s_map_block img").hide();
		$("#m4").show();
		$(".s_region").hide();
		$("#r6").show();
		event.stopPropagation();
	});
	$("#map7").bind('mouseover', function (event) {
		$(".s_map_block img").hide();
		$("#m5").show();
		$(".s_region").hide();
		$("#r7").show();
		event.stopPropagation();
	});
	$("#map8").bind('mouseover', function (event) {
		$(".s_map_block img").hide();
		$("#m8").show();
		$(".s_region").hide();
		$("#r8").show();
		event.stopPropagation();
	});
	$("#map9").bind('mouseover', function (event) {
		$(".s_map_block img").hide();
		$("#m9").show();
		$(".s_region").hide();
		$("#r9").show();
		event.stopPropagation();
	});
	$(".s_map_block area").bind('mouseout', function (event) {
		$(".s_map_block img").hide();
		$("#m").show();
		$(".s_region").hide();
		$("#r").show();
		event.stopPropagation();
	});
})
