// JavaScript Document
var seconds = 7500;
var count = 0;
//BOTTOM AD ROTATION
var bottomLink = new Array();
var bottomImg = new Array();;
bottomLink[0] = 'http://www.lluminarecords.com';
bottomLink[1] = 'http://launch.illuminarecords.com';
bottomImg[0] = 'images/ads/illumina_banner.jpg';
bottomImg[1] = 'images/ads/launch_706x76.gif';
var bottomTotal = 2;
function bottom_rotate()
	{
	if (count == bottomTotal)
		{
		count = 0;
		}
	document.getElementById('bottom_link').href = bottomLink[count];
	document.getElementById('bottom_ad').src = bottomImg[count];
	count++;
	}
window.setInterval('bottom_rotate()', seconds);
