function randomImg()
{
images = new Array(12);
			images[0] = "<img src='images/home1.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[1] = "<img src='images/home2.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[2] = "<img src='images/home3.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[3] = "<img src='images/home4.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[4] = "<img src='images/home5.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[5] = "<img src='images/home6.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[6] = "<img src='images/home7.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[7] = "<img src='images/home8.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[8] = "<img src='images/home9.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[9] = "<img src='images/home10.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[10] = "<img src='images/home11.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			images[11] = "<img src='images/home12.jpg' alt='Copperfield Dental Centre' style='width:846px; height:250px;' />";
			index = Math.floor(Math.random() * images.length);
			document.write(images[index]);
}

