<!--
grey = new Array(9)
grey[0] = '0.gif'
grey[1] = '1.gif'
grey[2] = '2.gif'
grey[3] = '3.gif'
grey[4] = '4.gif'
grey[5] = '5.gif'
grey[6] = '6.gif'
grey[7] = '7.gif'
grey[8] = '8.gif'

blue = new Array(9)
blue[0] = '0.gif'
blue[1] = '1.gif'
blue[2] = '2.gif'
blue[3] = '3.gif'
blue[4] = '4.gif'
blue[5] = '5.gif'
blue[6] = '6.gif'
blue[7] = '7.gif'
blue[8] = '8.gif'

blueimages = new Array(3)
greyimages = new Array(2)

for (var x = 0; x <= 2; x++)
   {
	core = Math.floor(Math.random()*blue.length);
	blueimages[x] = blue[core] 
	blue.splice(core,1)
   }

for (var x = 0; x <= 1; x++)
   {
	core = Math.floor(Math.random()*grey.length);
	greyimages[x] = grey[core] 
	grey.splice(core,1)
   }

document.write("<table width='100%'><td></td>")
document.write("<td width='100px'><img width='70' height='70' src='/images/blue/"+blueimages[0]+"'></td>")
document.write("<td></td>")
document.write("<td width='100px'><img width='70' height='70' src='/images/grey/"+greyimages[0]+"'></td>")
document.write("<td></td>")
document.write("<td width='100px'><img width='70' height='70' src='/images/blue/"+blueimages[1]+"'></td>")
document.write("<td></td>")
document.write("<td width='100px'><img width='70' height='70' src='/images/grey/"+greyimages[1]+"'></td>")
document.write("<td></td>")
document.write("<td width='100px'><img width='70' height='70' src='/images/blue/"+blueimages[2]+"'></td>")
document.write("<td></td></table>")

//-->
