// Adds a link to the home page page from the header div
function backHome() {
	if (!document.getElementById) return false;
	var box = document.getElementById("logo");
	box.onclick = function() { document.location = "http://www.fairtradegiftlist.co.uk/index.aspx"; }
	box.onmouseover = function () { this.style.cursor = "pointer" }
	box.onmouseout = function () { this.style.cursor = "default" }
}
window.onload = backHome;