//=============================================
//
//  TOP AD BANNER
//
//=============================================
Array.prototype.shuffle = function() {
	var i = this.length;
	while(i){
		var j = Math.floor(Math.random()*i);
		var t = this[--i];
		this[i] = this[j];
		this[j] = t;
	}
	return this;
}
/**
*  SMALL
**/
adImgArray = [];
//
adImgArray[0] = {
	src: "/images/side_bnr_leon.jpg",
	url: "http://www.leon.jp/",
	alt: "LEON"
};
adImgArray[1] = {
	src: "/images/side_bnr_comaco.jpg",
	url: "http://www.comacoworks.com/",
	alt: "art it"
}
adImgArray[2] = {
	src: "/images/side_bnr_imaii.jpg",
	url: "http://www.imaii.com/",
	alt: "imaii"
}

adImgArray[3] = {
	src: "/images/side_bnr_aman.jpg",
	url: "http://www.aman.ne.jp/",
	alt: "AMAN"
}
adImgArray[4] = {
	src: "/images/side_bnr_bodydirectorplus.gif",
	url: "http://www.bodydirectorplus.com/",
	alt: "BODY Director plus"
}

//
adImgArray.shuffle();
adImgArray.shuffle();





/**
*  LARGE
**/
adLargeArray = [];
//
adLargeArray[0] = {
	src: "/images/top_bmw.jpg",
	url: "http://www.totobmw.co.jp/jp/totobmw/ja/dealer/news/news.html?prm_action=1",
	alt: "Toto BMW"
};


/*
adLargeArray[1] = {
	src: "/images/top_savejapan.jpg",
	url: "http://savejapan.simone-inc.com/",
	alt: "savejapan"
};
*/




//
adLargeArray.shuffle();
adLargeArray.shuffle();

