// Displays one of the following images randmonly
// NB Images MUST be 255 x 232
// Images are stored in /images folder
// Peter Cornish 21/12/07
//
function RndImg()
{
var img_rnd = new Array ("AR-team.jpg");
var i = Math.round(10*Math.random());
return  img_rnd[i] 

}


