function highlightPage() {
	if (!document.location.href) return false;
	if (!document.body.setAttribute) return false;
	var currentpage = document.location.href
	if (currentpage.indexOf("index") >=0) {
		document.body.setAttribute("id","home");
	} else {
		if (currentpage.indexOf("contact") >=0) {
		document.body.setAttribute("id","contact");
		} else {
			if (currentpage.indexOf("media") >=0) {
			document.body.setAttribute("id","media");
			} else {
				if (currentpage.indexOf("design") >=0) {
				document.body.setAttribute("id","design");
				} else {
					document.body.setAttribute("id","none");
				}
			}
		}
	}
}
addLoadEvent(highlightPage);