var chosenAd=new Array();
chosenAd[0]="yamaha.jpg";
chosenAd[1]="sscom.jpg";
chosenAd[2]="subscribe.jpg";


var chosenAltCopy=new Array();
chosenAltCopy[0]="Ad for the Yamaha Junior Music Course. Click to learn more.";
chosenAltCopy[1]="Ad for the Sudbury Symphony Conservatory. Click to learn more.";
chosenAltCopy[2]="Ad for subscriptions. Click to learn more.";


var getRanAd=Math.floor(Math.random()*chosenAd.length);

function randomAd()
{
document.getElementById('randomAd').setAttribute('src','images/randomAds/'+chosenAd[getRanAd]);
document.getElementById('randomAd').setAttribute('alt',chosenAltCopy[getRanAd]);
}//---END OF AD RANDOMIZER-->

var chosenURL=new Array ();
chosenURL[0]="pages/yamaha.html";
chosenURL[1]="pages/sscom.html";
chosenURL[2]="pages/tickets.html";

function randomURL()
{
document.getElementById('randomURL').setAttribute('href',chosenURL[getRanAd]);
}