<!--
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++] = "<a href='Currentprojects_BlueHearts.htm'><img src='images/rotators/BlueHearts.png' alt='Blue Hearts Quilt, Custom design by Rhoda Walker' width='575' height='199' border='0'></a>"
random_text[number++] = "<a href='MachineQuilts_Bugs.htm'><img src='images/rotators/BugsandMoreBugs.png' alt='Bugs and More Bugs, a custom quilt by Rhoda Walker' width='575' height='199' border='0'></a>"
random_text[number++] = "<a href='Currentprojects_CrownRoyal.htm'><img src='images/rotators/CrownRoyal.png' alt='Crown Royal, made out of crown royal bags' width='575' height='199' border='0'></a>"
random_text[number++] = "<a href='Drawings_Leaf.htm'><img src='images/rotators/Leaf_Drawnwithcoloredpencil.png' alt='A leaf that was drawn with colored pencil' width='575' height='199' border='0'></a>"
random_text[number++] = "<a href='HandQuilts_Lizards.htm'><img src='images/rotators/LizardsontheWall.png' alt='Lizards on the wall, a custom quilt by Rhoda Walker' width='575' height='199' border='0'></a>"
random_text[number++] = "<a href='Wearable_Arts_Ode_to_the_Clock.htm'><img src='images/rotators/OdetotheClock.png' alt='Ode to the Clock, a wearable art jacket with mouse adornment' width='575' height='199' border='0'></a>"
random_text[number++] = "<a href='MachineQuilts_Purple_Bricks.htm'><img src='images/rotators/PurpleBricks.png' alt='Purple bricks, a custom quilt design by Rhoda Walker' width='575' height='199' border='0'></a>"
random_text[number++] = "<a href='HandQuilts_Tumbling.htm'><img src='images/rotators/TumblingBlocks.png' alt='Tumbling Blocks Quilt' width='575' height='199' border='0'></a>"
random_text[number++] = "<a href='Drawings_WhiteInkOnBlack.htm'><img src='images/rotators/Whiteinkonblackpaper.png' alt='Drawing using white ink on black paper' width='575' height='199' border='0'></a>"
random_text[number++] = "<a href='HandQuilts_Yoyo.htm'><img src='images/rotators/YoYoQuilt.png' alt='YoYo quilt in a floral pattern' width='575' height='199' border='0'></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]);
-->