// JavaScript Document
function hoverHomeOn() {
	document.getElementById("home").style.backgroundImage="url('topLinkHover.jpg')";
}
function hoverHomeOff() {
	document.getElementById("home").style.backgroundImage="none";
}
function hoverAboutOn() {
	document.getElementById("about").style.backgroundImage="url('topLinkHover.jpg')";
}
function hoverAboutOff() {
	document.getElementById("about").style.backgroundImage="none";
}
function hoverContactOn() {
	document.getElementById("contact").style.backgroundImage="url('topLinkHover.jpg')";
}
function hoverContactOff() {
	document.getElementById("contact").style.backgroundImage="none";
}
function hoverBlogOn() {
	document.getElementById("blog").style.backgroundImage="url('topLinkHover.jpg')";
}
function hoverBlogOff() {
	document.getElementById("blog").style.backgroundImage="none";
}
