function random_msg( ) {

	var r ;
	var xx = new Array( ) ;


	//	カスタマイズここから
	//
	//	xx.push( '表示させたい広告等1' ) ;
	//	xx.push( '表示させたい広告等2' ) ;
	//	xx.push( '表示させたい広告等3' ) ;
	//	.
	//	.
	//	.
	//
	//	のように記述する

	xx.push( '<a href="http://www.coupons.tnc.ne.jp/special/hakoneen/" target="_blank"><img class="sidebanner" src="http://coupons.tnc.ne.jp/special/images/recommend_hakoneeni.jpg" alt="箱根園水族館" width="190" height="114" border="0" /></a>' )
	xx.push( '<a href="http://www.coupons.tnc.ne.jp/special/zyougasaki/" target="_blank"><img class="sidebanner" src="http://coupons.tnc.ne.jp/special/images/recommend_jyougasaki.jpg" alt="城ヶ崎遊覧船" width="190" height="114" border="0" /></a>' )
	xx.push( '<a href="http://www.coupons.tnc.ne.jp/special/izusyaboten/" target="_blank"><img class="sidebanner" src="http://coupons.tnc.ne.jp/special/images/recommend_syaboten.jpg" alt="伊豆シャボテン公園" width="190" height="114" border="0" /></a>' )
	xx.push( '<a href="http://www.coupons.tnc.ne.jp/special/yurari/" target="_blank"><img class="sidebanner" src="http://coupons.tnc.ne.jp/special/images/recommend_yurari.jpg" alt="富士眺望の湯　ゆらり" width="190" height="114" border="0" /></a>' )
	xx.push( '<a href="http://www.coupons.tnc.ne.jp/special/hatsushima/" target="_blank"><img class="sidebanner" src="http://coupons.tnc.ne.jp/special/images/recommend_hatsushima.jpg" alt="初島アイランドリゾート" width="190" height="114" border="0" /></a>' )
	xx.push( '<a href="http://www.coupons.tnc.ne.jp/special/atamiseaside/" target="_blank"><img class="sidebanner" src="http://coupons.tnc.ne.jp/special/images/recommend_atamiseaside.jpg" alt="熱海シーサイドスパ＆リゾート" width="190" height="114" border="0" /></a>' )

	//	カスタマイズここまで


	r = Math.floor( Math.random( ) * xx.length ) ;
	document.write( xx[r] ) ;

}


