
var clickflg = false;

//---------------------------- マップリンク --------------------------------//

window.addEvent('domready', function () {
	$$('.maplink').addEvent('mouseenter', function () {
		var href = this.href;
		var idx = href.indexOf('#');
		var area = href.substr(idx+1);
		
		//alert(area);
		
		//--- over map
		if(area == 'hokkaidou' | area == 'tohoku') {
			$('body-inner').setStyle('background','url(images/bg_index-map_rol01.gif) left top no-repeat');
		}else if(area == 'kanto') {
			$('body-inner').setStyle('background','url(images/bg_index-map_rol02.gif) left top no-repeat');
		}else if(area == 'hokuriku') {
			$('body-inner').setStyle('background','url(images/bg_index-map_rol03.gif) left top no-repeat');
		}else if(area == 'tokai') {
			$('body-inner').setStyle('background','url(images/bg_index-map_rol04.gif) left top no-repeat');
		}else if(area == 'kinki') {
			$('body-inner').setStyle('background','url(images/bg_index-map_rol05.gif) left top no-repeat');
		}else if(area == 'chugoku') {
			$('body-inner').setStyle('background','url(images/bg_index-map_rol06.gif) left top no-repeat');
		}else if(area == 'shikoku') {
			$('body-inner').setStyle('background','url(images/bg_index-map_rol07.gif) left top no-repeat');
		}else if(area == 'kyushu') {
			$('body-inner').setStyle('background','url(images/bg_index-map_rol08.gif) left top no-repeat');
		}
	});
	$$('.maplink').addEvent('mouseleave', function () {
		//if(!clickflg) {
			$('body-inner').setStyle('background','none');
		//}
	});
});


//---------------------------- ポップアップブロック --------------------------------//
window.addEvent('domready', function () {
	$$('.maplink').addEvent('click', function () {
		
		clickflg = true;
		
		//popup close
		$('pupup-01').setStyle('display','none');
		$$('.link-block').setStyle('display','none');
		//---area link block open
		var href = this.href;
		var idx = href.indexOf('#');
		var area = href.substr(idx+1);
		
		//alert(area);
		
		if(area == 'hokkaidou' | area == 'tohoku') {
			$$('.link-block.area-01').setStyle('display','block');
		}else if(area == 'kanto') {
			$$('.link-block.area-02').setStyle('display','block');
		}else if(area == 'hokuriku') {
			$$('.link-block.area-03').setStyle('display','block');
		}else if(area == 'tokai') {
			$$('.link-block.area-04').setStyle('display','block');
		}else if(area == 'kinki') {
			$$('.link-block.area-05').setStyle('display','block');
		}else if(area == 'chugoku') {
			$$('.link-block.area-06').setStyle('display','block');
		}else if(area == 'shikoku') {
			$$('.link-block.area-07').setStyle('display','block');
		}else if(area == 'kyushu') {
			$$('.link-block.area-08').setStyle('display','block');
		}
	});
});
