function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text

random_text[number++] = "<br><A href='http://www.acrosstheharbour.com' target='_blank'><img src='images/across3.jpg' border=0 alt='Across the Harbour Bed & Breakfast in Victoria, BC'></a>"

//random_text[number++] = "<br><A href='http://www.kilmoreylodge.com' target='_blank'><img src='images/kilmorey-ad.jpg' border=0 alt='The Historic Kilmorey Lodge in Waterton Lakes National Park'></a>"

//random_text[number++] = "<br><A href='http://www.crandellmountainlodge.com' target='_blank'><img src='images/crandell_ad.jpg' border=0 alt='Crandell Mountain Lodge :: Alberta Best Service in Waterton Lakes National Park'></a>"

//random_text[number++] = "<br><A href='http://www.watertonlakeslodge.com' target='_blank'><img src='images/waterton_ad.jpg' border=0 alt='Waterton Lakes Resort :: Enviromentally friendly accommodations in the heart of Waterton Lakes National Park'></a>"

//random_text[number++] = "<br><A href='http://www.kickinghorseriverchalets.com' target='_blank'><img src='images/khrc_ad.jpg' border=0 alt='Kicking Horse River Chalets in Golden, BC'></a>"

// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);