var i = 1;

banner1= new Image();

banner1.src = "art/work/broch_naras1.jpg";

banner2 = new Image();

banner2.src = "art/work/broch_naras2.jpg";

banner3 = new Image();

banner3.src = "art/work/broch_naras3.jpg";

banner4 = new Image();

banner4.src = "art/work/46thnomineeinvite_small.gif";





links = new Array

links[1] = "broch_naras1_big.html"

links[2] = "broch_naras2_big.html"

links[3] = "broch_naras3_big.html"

links[4] = "46thnomineeinvite_big.html"






description = new Array

description[1] = "The Recording Academy Postcard"

description[2] = "The Recording Academy Invitation"

description[3] = "The Recording Academy Invitation"

description[4] = "46th Grammy Nominee Invite"








function startTime(){



        var time= new Date();

        hours= time.getHours();

        mins= time.getMinutes();

        secs= time.getSeconds();

        closeTime=hours*3600+mins*60+secs;

        closeTime+=2;	// How many seconds til the next rotation

        Timer();



}



function Timer(){

        var time= new Date();

        hours= time.getHours();

        mins= time.getMinutes();

        secs= time.getSeconds();

        curTime=hours*3600+mins*60+secs

        if (curTime>=closeTime){

		if (i < 4){	// The number 4 is the amount of banners that you have

			i++;

			document.banner.src = eval("banner" + i + ".src");

		}

		else{

			i = 1;

			document.banner.src = eval("banner" + i + ".src");

		}

		startTime();

	}

        else{

                window.setTimeout("Timer()",1000)}



}



function clickLink(){

	top.location = links[i]

}



function descript(){

	window.status = description[i]

}



// -->
