function ShowRandomImage()
{
	var now=new Date();
	var status=(now.getSeconds())%50;

	document.write('<img src="http://www.dlwp.com/images/cover_image'+status+'.jpg" width="744" height="159" alt="De La Warr Pavilion"/>');
}

function ShowRandomHomeImage()
{
	var now=new Date();
	var status=(now.getSeconds())%4;

	document.write('<img width="744" height="237" src="http://www.dlwp.com/images/home_'+status+'.jpg" alt="The De La Warr Pavilion"/>');
}

