// JavaScript Document


//-----------   FUNCTION SEPARATOR   --------------//


function randomBlock(tileno, offset)
{
	var rnum = Math.floor((Math.random() * 20)) + 1 + offset;
	document.getElementById('tile' + tileno).src = "/corporate/v4/tiles/" + rnum + ".jpg";
}	
	
	
	

//-----------   FUNCTION SEPARATOR   --------------//
	
	
	

function init()
{
	document.getElementById('terms').focus();
	
	// Randomise images
	randomBlock(1,0);
	randomBlock(2,20);
	randomBlock(3,40);
}