// JavaScript Document
/* <![CDATA[ */
			// default text to go in the form field.
			var defaulttext = 'Enter Your Email';
	
			// when this is ready do it.
			$(document).ready( function(){
				// set the text in the email field to our default text
				document.signup.EMail.value=defaulttext;
	
				// when someone focuses on the field, if it is filled with the default text clear it out.
				// otherwise leave it there so we don't delete what someone has already entered.
				$('input#EMail').focus( function(){
					if(document.signup.EMail.value==defaulttext){
						document.signup.EMail.value='';
					}
				});
	
				// when someone leaves the email field check if it's empty. if it is put the default text
				// back into it.
				$('input#EMail').blur( function(){
					if(document.signup.EMail.value==''){
						document.signup.EMail.value=defaulttext;
					}
				});
	
				// this is just for this page to keep the form from submitting
				$('form#signup').submit( function(){
					// you could replace this return statement with a form validation script call if you wanted to.
					return false;
				});
			});
			// default text to go in the form field.
			var defaulttextname = 'Enter Your Name';
	
			// when this is ready do it.
			$(document).ready( function(){
				// set the text in the email field to our default text
				document.signup.Name2.value=defaulttextname;
	
				// when someone focuses on the field, if it is filled with the default text clear it out.
				// otherwise leave it there so we don't delete what someone has already entered.
				$('input#Name2').focus( function(){
					if(document.signup.Name2.value==defaulttextname){
						document.signup.Name2.value='';
					}
				});
	
				// when someone leaves the email field check if it's empty. if it is put the default text
				// back into it.
				$('input#Name2').blur( function(){
					if(document.signup.Name2.value==''){
						document.signup.Name2.value=defaulttextname;
					}
				});
	
				// this is just for this page to keep the form from submitting
				$('form#signup').submit( function(){
					// you could replace this return statement with a form validation script call if you wanted to.
					return false;
				});
			});
		/* ]]> */