$(document).ready(function() 
	{
		// email form functions
		$("#email_address").focus( function() {
			this.value = '';
			this.style.color = '#000'
			this.style.background = '#fff'
			}
		);

		$("#email_address").blur( function() {
			this.value = 'Enter Email Address...';
			this.style.color = '#000'
			this.style.background = '#fff'
			this.style.color = '#999';
			}
		);		
});