
/*
 *
 *	スクリプト名           ： ランダム広告表示スクリプト( pr.js )  Ver 2.00
 *	作った人               ： たかひろ
 *	作った人のサイト       ： http://www1.plala.or.jp/ayatohiroka/
 *	スクリプトの説明ページ ： http://www1.plala.or.jp/ayatohiroka/javascript/random.html
 *	著作権                 ： 放棄します。ご自由に。
 *
 */


function random_msg( ) {

	var r ;
	var xx = new Array( ) ;


	//	カスタマイズここから

	xx.push( '<a href="http://www.volkswagen.co.jp/information/events/2010/0904/" target="_blank"><img src="img/index/fair_last_chance.jpg" alt="ラストチャンス フェアー" width="780" height="260" /></a>' ) ;
	xx.push( '<a href="http://www.volkswagen.co.jp/cars/polo/main.html" target="_blank"><img src="img/index/m_index_newPolo2010.jpg" alt="New Polo TSI デビュー" width="780" height="260" /></a>' ) ;
	xx.push( '<a href="http://crosspolo.jp/" target="_blank"><img src="img/index/CrossPolo.jpg" alt="CROSSPOLO デビュー" width="780" height="260" /></a>' ) ;
	xx.push( '<a href="http://www.volkswagen.co.jp/ecocar-tax/subsidy/" target="_blank"><img src="img/index/ecocar.jpg" alt="エコカー補助金9月末まで" width="780" height="260" /></a>' ) ;


	//	カスタマイズここまで


	r = Math.floor( Math.random( ) * xx.length ) ;
	document.write( xx[r] ) ;

}


