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



var chosenAltCopy=new Array();
chosenAltCopy[0]="Ad for the Yamaha Junior Music Course. Click to learn more.";
chosenAltCopy[1]="Subscription Available now. 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/sscom.html";
chosenURL[1]="../../pages/tickets.html";


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