function random(){
slides = new Array(1);

slides[0] = "<a href = 'myportfolio.htm'><img src='beauty/beauty1.jpg' width='700' height='400' alt='Shannon'></a>";

i = Math.floor(Math.random() * slides.length);

document.write("<DL>\n");
document.write("<DT>" + "" + slides[i] + "\n");
document.write("</DL>\n");
}