//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(15);

images[0] = "<img class='photo' src='rand images/dragonwall.jpg' title='Nine Dragon Wall'>";

images[1] = "<img class='photo' src='rand images/greatwall.jpg' title='Great Wall - Ba Da Ling'>";

images[2] = "<img class='photo' src='rand images/gugong.jpg' title='Forbidden City'>";

images[3] = "<img class='photo' src='rand images/gugong1.jpg' title='Forbidden City'>"; 

images[4] = "<img class='photo' src='rand images/gugong2.jpg' title='Forbidden City'>";

images[5] = "<img class='photo' src='rand images/ha.jpg' title='Shaolin Temple'>";

images[6] = "<img class='photo' src='rand images/heng.jpg' title='Shaolin Temple'>";

images[7] = "<img class='photo' src='rand images/northgugong.jpg' title='Forbidden City'>";

images[8] = "<img class='photo' src='rand images/pagoda.jpg' title='Shaolin Temple'>";

images[9] = "<img class='photo' src='rand images/shaolin.jpg' title='Shaolin Temple'>"; 

images[10] = "<img class='photo' src='rand images/shaolin gate.jpg' title='Shaolin Temple'>";  

images[11] = "<img class='photo' src='rand images/southgate.jpg' title='Tiananmen Square'>";

images[12] = "<img class='photo' src='rand images/tiananmen.jpg' title='Forbidden City'>";

images[13] = "<img class='photo' src='rand images/tiananmensq.jpg' title='Tiananmen Square'>"; 

images[14] = "<img class='photo' src='rand images/tiananmensq1.jpg' title='Tiananmen Square'>";		  

index = Math.floor(Math.random() * images.length);

document.write("<DL>\n");

document.write("<DT>" + "" + images[index] + "\n");

document.write("</DL>\n");

//done