// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
adImages1=new Array("images/games/doom_rs.jpg","images/games/fightnight_rs.jpg","images/games/forza_rs.jpg","images/games/grandtheftautosa_rs.jpg","images/games/halo2_rs.jpg","images/games/rugby2005_rs.jpg","images/games/starwars3_rs.jpg")
adImages2=new Array("images/movies/becool_rs.jpg","images/movies/bringiton_rs.jpg","images/movies/collateral_rs.jpg","images/movies/constatine_rs.jpg","images/movies/hitch_rs.jpg","images/movies/meetthefockers_rs.jpg","images/movies/teamamerica_rs.jpg")
adImages3=new Array("images/music/dancenation2002_rs.jpg","images/music/chilloutsession_rs.jpg","images/music/wild2004_rs.jpg","images/music/discoinferno_rs.jpg","images/music/ultimatekylie_rs.jpg","images/music/12step_rs.jpg","images/music/beautifulsoul_rs.jpg","images/music/mossession2_rs.jpg")

thisAd1=0
thisAd2=0
thisAd3=0

imgCt1=adImages1.length
imgCt2=adImages2.length
imgCt3=adImages3.length

function rotate(){
	if(document.images){

		thisAd1++
		if(thisAd1==imgCt1){
			thisAd1=0
		}
		window.document.adBanner1.src=adImages1[thisAd1]

		thisAd2++
		if(thisAd2==imgCt2){
			thisAd2=0
		}
		window.document.adBanner2.src=adImages2[thisAd2]

		thisAd3++
		if(thisAd3==imgCt3){
			thisAd3=0
		}
		window.document.adBanner3.src=adImages3[thisAd3]
		
		setTimeout("rotate()",5*1000)
	}
}	
	
