/********************************************************
  Image Rollover
  use this function to change the image when you rollover it with a mouse
********************************************************/
function mouseOver(id) {
	if (id == "mainLogo")
		document.getElementById(id).src ="wp-content/themes/bikebarntheme/images/bikeBarnLogoHover.png";
}

function mouseOut(id) {
	if (id == "mainLogo")
		document.getElementById(id).src ="wp-content/themes/bikebarntheme/images/bikeBarnLogo.png";
}

function clearField() {
	if (document.getElementById('email').value == "Email address")
		document.getElementById('email').value = "";
}
