// JavaScript Document

var emailBox = 
{
	init: function()
	{
		var inputBox = document.getElementById("email");
		inputBox.value = "Your Email Address";
		inputBox.onfocus = function() {
			if(inputBox.value == "Your Email Address") {
				inputBox.value = "";
			}
		}
		inputBox.onblur = function() {
			if(inputBox.value == "") {
				inputBox.value = "Your Email Address";
			}
		}
	}
}

Core.start(emailBox);