/***************************************
 * (c)ウェブシステムズ
 * http://www.websystems.jp/
 ***************************************/

$(function()
{
	$('#region_map').hide();

	$('#map_view').click(function(){
		$('#region_map').animate(
			{height: "toggle", opacity: "toggle"}
			//{duration: "normal", easing: "linear"}
		);
		return false;
	});

	$('#Map area').each(function(){
		$(this).click(function(){
			var pos = $(this).attr('id').split('_').pop();
			//alert(pos);

			$('select[@name="region"]').val(pos);

			$('#region_map').animate(
				{height: "toggle", opacity: "toggle"}
				//{duration: "slow", easing: "linear"}
			);
			return false;
		});
	});
});

