
<!--
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++] = "<p class=caption align=center><img src=images/sce/image_facilities2.jpg><br>Pallets of Bamboo staged for shipment</p>"
random_text[number++] = "<p class=caption align=center><img src=/images/sce/image_facilities3.jpg><br>Environmentally controlled warehouse</p>"
random_text[number++] = "<p class=caption align=center><img src=/images/sce/image_facilities4.jpg><br>Always handle with care - <br>pride in organization</p>"
// random_text[number++] = "<p class=caption align=center><img src=images/sce/image_facilities5.jpg><br>Almost makes Winter look attractive...Naahhh!</p>"

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