function setServerTour() {
	objMouseovers = document.getElementsByClassName("iconlist")

	// Loop through all divs with the class of iconlist
	for (var i = 0; i < objMouseovers.length; i++) {
		var bolOnObject = false;
		
		// Attach an event to handle the mouseover of each iconlist div
		Event.observe(objMouseovers[i], 'mouseover', function(event) {
			if (Event.element(event).tagName == 'A') {
			// Pick up the id of the main iconlist div and uses that for the image name
			if (Event.element(event).tagName == "IMG")
				strId = Event.element(event).parentNode.id;
			else
				strId = Event.element(event).id;
				
			// Change the image
			$('mouseoverpic').src = "/pics/hosting/securecentre/" + strId + ".gif";
			
			bolOnObject = true;
			
			// Attach an event to mouseout event
			addEvent($(strId), "mouseout", function() {
				// At a timeout to change the image back to the default in 0.5 seconds
				hideTime = window.setTimeout(function() {
					if(!bolOnObject)
						$('mouseoverpic').src = "/pics/hosting/securecentre/roll_1.gif";
				}, 2500);
				bolOnObject = false;
			});
			}
		}.bind(this), true);
	}
}