/*
 *
 *	スクリプト名           ： ランダム広告表示スクリプト( 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( '表示させたい広告等1' ) ;
	//	xx.push( '表示させたい広告等2' ) ;
	//	xx.push( '表示させたい広告等3' ) ;
	//	.
	//	.
	//	.
	//
	//	のように記述する

	xx.push( '<a href="http://www.hatakeshi.net/item_search/?rootCategoryId=34&keyword=&submit.x=27&submit.y=14"><img src="http://www.hatakeshi.net/images/information/02.jpg" alt="家庭菜園のご提案" /></a>' ) ;
	xx.push( '<a href="http://www.hatakeshi.net/item_search/?rootCategoryId=33&keyword=&submit.x=13&submit.y=14"><img src="http://www.hatakeshi.net/images/information/03.jpg" alt="山田育苗園" /></a>' ) ;
	xx.push( '<a href="http://www.hatakeshi.net/members/greengloves.html"><img src="http://www.hatakeshi.net/images/information/04.jpg" alt="green" /></a>' ) ;
	xx.push( '<a href="http://www.hatakeshi.net/item_detail/itemId,42/"><img src="http://www.hatakeshi.net/images/information/05.jpg" alt="貸し農園のマイファーム" /></a>' ) ;
	xx.push( '<a href="http://www.hatakeshi.net/item_detail/itemId,47/"><img src="http://www.hatakeshi.net/images/information/06.jpg" alt="いちご栽培キット" /></a>' ) ;
	xx.push( '<a href="http://www.hatakeshi.net/item_detail/itemId,75/"><img src="http://www.hatakeshi.net/images/information/07.jpg" alt="長靴" /></a>' ) ;
	xx.push( '<a href="http://www.hatakeshi.net/blog/2009/07/blog-post.html"><img src="http://www.hatakeshi.net/images/information/08.jpg" alt="eeiiuu" /></a>' ) ;

	//	カスタマイズここまで


	r = Math.floor( Math.random( ) * xx.length ) ;
	document.write( xx[r] ) ;

}

