descList = new Array();

descList[0] = "<p class='random'>Various <a href='membership.php'>membership optons</a> are available at competetive rates.</p>";

descList[1] = "<p class='random'>We are running a range of <a href='coaching.php'>coaching courses</a> for all age groups</p>";

descList[2] = "<p class='random'><a href='teams.php'>Club teams</a> are entered in <a href='teams.php'>local leagues</a></p>";

descList[3] = "<p class='random'>Members can enter the <a href='tournaments.php'>annual club tournaments</a></p>";

descList[4] = "<p class='random'><a href='public-play.php'>Tennis courts</a> can be booked by <a href='public-play.php'>members of the public</a></p>";




numberList = new Array();

numberList[0] = '<a href="membership.php"><img src="i/0.jpg" height="150px" width="200px"></a>';
numberList[1] = '<a href="coaching.php"><img src="i/1.jpg" height="150px" width="200px"></a>';
numberList[2] = '<a href="teams.php"><img src="i/2.jpg" height="150px" width="200px"></a>';
numberList[3] = '<a href="tournaments.php"><img src="i/3.jpg" height="150px" width="200px"></a>';
numberList[4] = '<a href="public-play.php"><img src="i/4.jpg" height="150px" width="200px"></a>';



//randomization
var now = new Date();
var secs = now.getSeconds();
var raw_random_number = Math.random(secs);
var random_number = Math.round(raw_random_number * (descList.length));

if (random_number == descList.length){random_number = 0}
if (random_number == numberList.length){random_number = 0}
	
	
//set quote
var description = descList[random_number];
var number = numberList[random_number];