// JavaScript Document			 
function random_text()
{};
var random_text = new random_text();

var number = 0;

random_text[number++] = "<table width='100%' border=0><tr><td bgcolor='#FFFFFF' align='center'><a href='waterton_lakes_resort.htm' title='Waterton Lakes Resort, Accommodations in Waterton Lakes National Park'><img src='images/waterton_ad.jpg' border=0></a></td></tr><tr><td bgcolor='#FFFFFF' align='center'><a href='crandell_mountain_lodge.htm' title='Crandell Mountain Lodge, Historic Lodge Accommodations in Waterton Lakes National Park'><img src='images/crandell_ad.jpg' border=0></a></td></tr></table>"

random_text[number++] = "<table width='100%' border=0><tr><td bgcolor='#FFFFFF' align='center'><a href='waterton_lakes_resort.htm' title='Waterton Lakes Resort, Accommodations in Waterton Lakes National Park'><img src='images/waterton_ad.jpg' border=0></a></td></tr><tr><td bgcolor='#FFFFFF' align='center'><a href='kilmorey_lodge.htm' title='Crandell Mountain Lodge, Historic Lodge Accommodations in Waterton Lakes National Park'><img src='images/kilmorey_ad.jpg' border=0></a></td></tr></table>"

random_text[number++] = "<table width='100%' border=0><tr><td bgcolor='#FFFFFF' align='center'><a href='crandell_mountain_lodge.htm' title='Crandell Mountain Lodge, Historic Lodge Accommodations in Waterton Lakes National Park'><img src='images/crandell_ad.jpg' border=0></a></td></tr><tr><td bgcolor='#FFFFFF' align='center'><a href='waterton_lakes_resort.htm' title='Waterton Lakes Lodge, Accommodations in Waterton Lakes National Park'><img src='images/waterton_ad.jpg' border=0></a></td></tr></table>"

//random_text[number++] = "<table width='100%' border=0><tr><td bgcolor='#FFFFFF' align='center'><a href='kilmorey_lodge.htm' title='Kilmorey Lodge, Historic Lodge Accommodations in Waterton Lakes National Park'><img src='images/kilmorey_ad.jpg' border=0></a></td></tr><tr><td bgcolor='#FFFFFF' align='center'><a href='waterton_lakes_resort.htm' title='Waterton Lakes Lodge, Accommodations in Waterton Lakes National Park'><img src='images/waterton_ad.jpg' border=0></a></td></tr></table>"

//random_text[number++] = "<table width='100%' border=0><tr><td bgcolor='#FFFFFF' align='center'><a href='http://www.watertonlakeslodge.com/' target='_blank' title='Waterton Lakes Lodge, Accommodations in Waterton Lakes National Park'><img src='images/waterton_ad.jpg' border=0></a></td></tr><tr><td bgcolor='#FFFFFF' align='center'><a href='http://www.crandellmountainlodge.com/' target='_blank' title='Crandell Mountain Lodge, Historic Lodge Accommodations in Waterton Lakes National Park'><img src='images/crandell_ad.jpg' border=0></a></td></tr></table>"

var random_number = Math.floor(Math.random() * number);
document.write(random_text[random_number]);
			 