﻿			// ランダムに画像を表示する
			jmps = new Array();
			imgs = new Array();
			alts = new Array();
			titles = new Array();

			// ジャンプ先のアドレス(数字は画像、テキストと対応)
                        jmps[0] = "http://ohirafudousan.ti-da.net/";
                        jmps[1] = "http://net55.jp";
                        jmps[2] = "http://log.ti-da.net/ad/user/ad.php?id=2939";
                        jmps[3] = "http://log.ti-da.net/ad/user/ad.php?id=3444";

			// 画像のアドレス(数字はジャンプ先のアドレス、テキストと対応)

                        imgs[0] = "http://blog.ti-da.net/common/img/bnr/omisepr/bnr_omisepr_oohira.jpg";
                        imgs[1] = "http://blog.ti-da.net/common/img/bnr/omisepr/bnr_eikou300_150.jpg";
                        imgs[2] = "http://blog.ti-da.net/common/img/bnr/omisepr/mirai_0410_300_150.gif";
                        imgs[3] = "http://blog.ti-da.net/common/img/bnr/omisepr/arakaki300_150.jpg";

			// alt 属性の入力(数字は画像の alt、テキストと対応)

                        alts[0] = "大平不動産株式会社";
                        alts[1] = "散布機ざわわで確実散布";
                        alts[2] = "株式会社みらいホーム";
                        alts[3] = "新垣形成外科";

			// title 属性の入力(数字は画像の title、テキストと対応)

                        titles[0] = "大平不動産株式会社";
                        titles[1] = "散布機ざわわで確実散布";
                        titles[2] = "株式会社みらいホーム";
                        titles[3] = "新垣形成外科";

			n = Math.floor(Math.random()*jmps.length);

			document.write("<h2>");
			document.write("てぃーだオススメ情報");
			document.write("</h2>");
			document.write("<div style='text-align:center'>");

			document.write("<a href='"+jmps[n]+"' target='_blank'>");
			document.write("<img src='"+imgs[n]+"' border='0' alt='"+alts[n]+"' title='"+titles[n]+"'>");

			document.write("</a>");

			document.write("</div>");
