

/*
 *
 *	スクリプト名           ： ランダム広告表示スクリプト( 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/campaign/2012/0109/" target="_blank"><img src="img/index/long_value_campaign.jpg" alt="ロングバリュー キャンペーン" width="780" height="260" /></a>' ) ;  
	xx.push( '<a href="http://www.volkswagen.co.jp/cars/thebeetle/main.html" target="_blank"><img src="img/index/the_beetle.jpg" alt="The 21st Century Beetle" width="780" height="260" /></a>' ) ;  
	xx.push( '<a href="http://www.volkswagen.co.jp/cars/golfcabriolet/main.html" target="_blank"><img src="img/index/golf_cabriolet_new.jpg" alt="New Golf Cabriolet Debut" width="780" height="260" /></a>' ) ;	
	xx.push( '<a href="http://www.volkswagen.co.jp/information/events/2012/0211/" target="_blank"><img src="img/index/winter_fair.jpg" alt="ウインター フェア" width="780" height="260" /></a>' ) ;
	xx.push( '<a href="http://www.volkswagen.co.jp/bmt/golf_tsi_trendline.html" target="_blank"><img src="img/index/golf_bmt.jpg" alt="Golf TSI Trendline BlueMotion Technology" width="780" height="260" /></a>' ) ;	
	
	

	//	カスタマイズここまで


	r = Math.floor( Math.random( ) * xx.length ) ;
	document.write( xx[r] ) ;

}



