// JavaScript Document

// Change your contact information in the page footer here
function contactInformation() {
	var footerDiv = document.getElementById('footer');
	footerDiv.innerHTML = "ATV-Racing | Eneby Lodge, 63509 Eskilstuna | Tfn. +4616 353038 | Fax. +4616 350038 | <a href='mailto:info@atv-racing.se'>info@atv-racing.se</a> |       copyright © 2010 JEWEBdesign";
	}

function markCurrent(obj) {
	var linkList = document.getElementById("site_content").getElementsByTagName("a");
	for (i = 0; i < linkList.length; i++) {
		linkList[i].className = " ";
		}
	obj.className = "current";
	}
