function randomContent ()
{
var chosenImage=new Array();

chosenImage[1]="momo/thumbnails/qu'ranic%20mandala%204.jpg";
chosenImage[2]="floragraphy/thumbnails/riffle.jpg";
chosenImage[3]="momo/thumbnails/iris%20rusticana.jpg";
chosenImage[4]="kauai/thumbnails/showy.jpg";
chosenImage[5]="momo/thumbnails/spring%20rain.jpg";
chosenImage[6]="etherea/thumbnails/aurora.jpg";
chosenImage[7]="kauai/thumbnails/chiaroscuro.jpg";
chosenImage[8]="momo/thumbnails/frank%20lloyd%20partridge.jpg";

var chosenAltCopy=new Array();

chosenAltCopy[1]="qur'anic mandala 4, one of the limited edition art prints in my studio momo portfolio";
chosenAltCopy[2]="riffle, one of the iris photos in my floragraphy portfolio";
chosenAltCopy[3]="iris rusticana, one of the limited edition art prints in my studio momo portfolio";
chosenAltCopy[4]="showy, one of my limited edition photographs in my kaua'i portfolio";
chosenAltCopy[5]="spring rain, one of the limited edition art prints in my studio momo portfolio";
chosenAltCopy[6]="aurora, one of the limited edition photos in my etherea portfolio";
chosenAltCopy[7]="chiaroscuro, one of the limited edition photos in my kaua'i portfolio";
chosenAltCopy[8]="frank lloyd partridge, one of the limited edition art prints in my studio momo portfolio";

var chosenLink=new Array();

chosenLink[1]="momo/index.html";
chosenLink[2]="floragraphy/index.html";
chosenLink[3]="momo/index.html";
chosenLink[4]="kauai/index.html";
chosenLink[5]="momo/index.html";
chosenLink[6]="etherea/index.html";
chosenLink[7]="kauai/index.html";
chosenLink[8]="momo/index.html";

var getRan=Math.ceil(Math.random()*chosenImage.length)

document.write('<a href=\"'+chosenLink[getRan]+'\" target="_top"><img src=\"'+chosenImage[getRan]+'\" alt=\"'+chosenAltCopy[getRan]+'\" border="0" /></a>')
}
