// JavaScript Document
var maxBannerCount = 18;
function bannerObject(imagefile, alttext, jumpTo, catchcopy) {
	this.imagefile = imagefile;
	this.alttext = alttext;
	this.jumpTo = jumpTo;
	this.catchcopy = catchcopy;
}
var banners = new Array(maxBannerCount);
banners[0] = new bannerObject('/images/flash/ANIME.html', '', '', '');
banners[1] = new bannerObject('/images/flash/BGV.html', '', '', '');
banners[2] = new bannerObject('/images/flash/CLASSIC.html', '', '', '');
banners[3] = new bannerObject('/images/flash/EASYLISTENING.html', '', '', '');
banners[4] = new bannerObject('/images/flash/KAYOU.html', '', '', '');
banners[5] = new bannerObject('/images/flash/HOUGA.html', '', '', '');
banners[6] = new bannerObject('/images/flash/IDLE.html', '', '', '');
banners[7] = new bannerObject('/images/flash/JAZZ.html', '', '', '');
banners[8] = new bannerObject('/images/flash/JPOP.html', '', '', '');
banners[9] = new bannerObject('/images/flash/KIDS.html', '', '', '');
banners[10] = new bannerObject('/images/flash/MISC.html', '', '', '');
banners[11] = new bannerObject('/images/flash/ROCKPOPS.html', '', '', '');
banners[12] = new bannerObject('/images/flash/SOUL.html', '', '', '');
banners[13] = new bannerObject('/images/flash/SOUNDTRACK.html', '', '', '');
banners[14] = new bannerObject('/images/flash/SPORTS.html', '', '', '');
banners[15] = new bannerObject('/images/flash/TVDRAMA.html', '', '', '');
banners[16] = new bannerObject('/images/flash/YOUGA.html', '', '', '');
banners[17] = new bannerObject('/images/flash/ETCAV.html', '', '', '');

function drawABanner() {
	var curBanner = banners[Math.floor(Math.random() * maxBannerCount)];
	document.write('<iframe width="422" height="68" frameborder="0" scrolling="no" Marginwidth="1" Marginheight="1" src="' + curBanner.imagefile + '">banner</iframe>');
}
