﻿/*
 * show school scene
 */

function ShowRandomImage() {
 var randomNum = Math.ceil(Math.random() * 10);
 var idx = randomNum % 7;
 document.write("<img src='images/schoolscene/scene0" + idx + ".jpg' alt='' align='absbottom' />");
}


