// JavaScript Document

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

Core.start(emailBox);
