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

slides[0] = "<a href = 'myportfolio2.htm'><img src='product/product1.jpg' width='600' height='400' alt='product'></a>";
slides[1] = "<a href = 'myportfolio2.htm'><img src='dessert/dessert1.jpg' width='600' height='400' alt='product'></a>";
slides[2] = "<a href = 'myportfolio2.htm'><img src='commercial/commercial1.jpg' width='600' height='400' alt='product'></a>";
slides[3] = "<a href = 'myportfolio2.htm'><img src='cuisine/cuisine1.jpg' width='600' height='400' alt='product'></a>";

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

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

}
