// JavaScript Document
function setStyle(x)	{
	document.getElementById(x).style.backgroundImage="none";
}

function resetStyle(x)	{
	document.getElementById(x).style.backgroundImage="url(http://www.lboro.ac.uk/it/images/google2.jpg)";
}

