<!--
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++] = "<img src=http://choose-community.com/wp-content/themes/ChooseCommunity/ChooseCommunity/images/header-salem.jpg border=0 />"
random_text[number++] = "<img src=http://choose-community.com/wp-content/themes/ChooseCommunity/ChooseCommunity/images/header-powell.jpg border=0 />"
random_text[number++] = "<img src=http://choose-community.com/wp-content/themes/ChooseCommunity/ChooseCommunity/images/header-daisy.jpg border=0 />"
random_text[number++] = "<img src=http://choose-community.com/wp-content/themes/ChooseCommunity/ChooseCommunity/images/header-abc.jpg border=0 />"
random_text[number++] = "<img src=http://choose-community.com/wp-content/themes/ChooseCommunity/ChooseCommunity/images/header-glory.jpg border=0 />"
random_text[number++] = "<img src=http://choose-community.com/wp-content/themes/ChooseCommunity/ChooseCommunity/images/header-anton.jpg border=0 />"
random_text[number++] = "<img src=http://choose-community.com/wp-content/themes/ChooseCommunity/ChooseCommunity/images/header-chc.jpg border=0 />"

// 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]);
-->
