var myArrayA = new Array();
var A = 0;

// begin edit here -- escape single quotes and closing brackets with backslash -- \' and \> -- thank you

myArrayA[A++] = '<div id="news-3pattern"><a href="../spot_event/shuttle_bus/index.html"><img src="../news_image/home_hotel/shuttle_bus-S.jpg" width="162" height="124" border="0" alt="盛岡駅⇔安比・八幡平エリア無料シャトルイバス運行！！"></a><a href="../spot_event/open30/index.html"><img src="../news_image/home_hotel/open30-S.jpg" width="162" height="124" border="0" alt="安比高原スキー場開業30周年特別企画APPIうさぎクラブ新規入会＆ありがとうキャンペーン"></a><a href="spotplan/natsu_mikaku/index.html"><img src="../news_image/home_hotel/natsu_mikaku-S.jpg" width="162" height="124" border="0" alt="夏の味覚を満喫！宿泊プラン" class="last"></a></div>'
// 無料シャトルイバス・安比高原スキー場開業30周年特別企画・夏の味覚を満喫！宿泊プラン



// end editing here

rnd.today=new Date();
rnd.seed=rnd.today.getTime();
function rnd() {
	rnd.seed = (rnd.seed*9301+49297) % 233280;
	return rnd.seed/(233280.0);
};
function rand(number) {
	return Math.ceil(rnd()*number);
};
function loadRandomA() {
	var Aurl = myArrayA[rand(A)-1];
	document.write(Aurl);
}