// JavaScript Document

/*$(document).ready(function() {
if(visualType == 1){
	$('#swfAreaInner').replaceWith('<p><img src="images/homeA_img_mainvisual.jpg" alt="末永い安定経営を私たちがサポートします。" width="950" height="120" border="0" usemap="#Map3" /></p><map name="Map3" id="Map3"><area shape="rect" coords="419,75,506,110" href="trust/letoitF3/index.html" alt="Letoit FⅢ" /><area shape="rect" coords="507,75,572,110" href="trust/letoit.html" alt="Letoit" /><area shape="rect" coords="573,75,667,110" href="trust/letoitWR.html" alt="Letoit WR" /><area shape="rect" coords="668,75,804,110" href="trust/ohisama/index.html" alt="Letoit おひさまスタイル" /><area shape="rect" coords="805,75,944,110" href="trust/maisonnette.html" alt="Letoit Maisonnette" /></map>');
}else if(visualType == 2){
	$('#swfAreaInner').replaceWith('<p><img src="images/homeB_img_mainvisual.jpg" width="950" height="120" alt="未来価値にこだわるアパート経営をセキスイハイムで。" /></p>');
}else if(visualType == 3){
	$('#swfAreaInner').replaceWith('<p><img src="images/homeC_img_mainvisual.jpg" width="950" height="120" alt="メンテナンスも、間取り変更も、低コスト。" /></p>');
}
});*/
var mainvisual = {

	visualSwitch : function(){
		visualType;
		var mvisual = document.getElementById('mainvisual');
		if(visualType == 1){
			//alert(visualType);
			mvisual.innerHTML='<p><img src="images/homeA_img_mainvisual.jpg" alt="末永い安定経営を私たちがサポートします。" width="950" height="120" border="0" usemap="#Map3" /></p><map name="Map3" id="Map3"><area shape="rect" coords="419,75,506,110" href="trust/letoitF3/index.html" alt="Letoit FⅢ" /><area shape="rect" coords="507,75,572,110" href="trust/letoit.html" alt="Letoit" /><area shape="rect" coords="573,75,667,110" href="trust/letoitWR.html" alt="Letoit WR" /><area shape="rect" coords="668,75,804,110" href="trust/ohisama/index.html" alt="Letoit おひさまスタイル" /><area shape="rect" coords="805,75,944,110" href="trust/maisonnette.html" alt="Letoit Maisonnette" /></map>';
		}else if(visualType == 2){
			mvisual.innerHTML='<p><img src="images/homeB_img_mainvisual.jpg" width="950" height="120" alt="未来価値にこだわるアパート経営をセキスイハイムで。" /></p>';
		}else if(visualType == 3){
			mvisual.innerHTML='<p><img src="images/homeC_img_mainvisual.jpg" width="950" height="120" alt="メンテナンスも、間取り変更も、低コスト。" /></p>';
		}
	},

	addEvent : function(){
		try {
			window.addEventListener('load', this.visualSwitch, false);
		} catch (e) {
			window.attachEvent('onload', this.visualSwitch);
		}
	}
}

mainvisual.addEvent();
