// JavaScript Document
function addBanner(){

var NumberOfAds = 5;
var AdNumber = Math.floor(Math.random()*NumberOfAds);
AdNumber +=1;
if (AdNumber==1)
{
 url="http://www.australia-day.com.au/harbours-edge-events-centre.html";
 Graphic="./images/harbours_300x143-austday.gif";
 width = "300";
 height = "143";
 alt = "'Harbours Edge'";
 title = "'Harbours Edge'";
}
if (AdNumber==2)
{
 url="http://www.australia-day.com.au/paddle-steamer-decoy.html";
 Graphic="./images/psdecoy_300x143-austday.gif";
 width = "300";
 height = "143";
 alt="'Australia Day Paddle Steamer Decoy'";
 title="'Australia Day Paddle Steamer Decoy'";
}
if (AdNumber==3)
{
url="http://www.australia-day.com.au/bayrunner.html";
 Graphic="./images/bayrunner_300x143-austday.gif";
 width = "300";
 height = "143";
 alt = "'Bay Runner'";
 title = "'Bay Runner'";
}
if (AdNumber==4)
{
 url="http://www.australia-day.com.au/lifes-a-ball.html";
 Graphic="./images/lifesaball_300x143-austday.gif";
 width = "300";
 height = "143";
 alt = "'Lifes a Ball'";
 title = "'Lifes a Ball'";
}
if (AdNumber==5)
{
 url="http://www.australia-day.com.au/temperance-hotel.html";
 Graphic="./images/temperance_300x143-austday.gif";
 width = "300";
 height = "143";
 alt = "'Temperance Hotel'";
 title = "'Temperance Hotel'";
}

document.write('<a href=\"' + url + '\">');
document.write('<img src=\"' + Graphic + '\" class=\"image\" width=')
document.write(width + ' height=' + height +  ' alt=' + alt + ' title=' + title + ' ' );
document.write('border=0>');
document.write('</a>');

}