/****************************************
GLOBAL.JS
- This file is used to store functions that are called on everypage
****************************************/


/****************************************
$().ready()
- this function is triggered when all page elements have been loaded
and are ready to be manipulated. just like onload="init()"
****************************************/
$().ready(function(){
				   
	$("#txtEmail").focus(function() {
	   if (this.value == "Email Address"){
		 this.value = "";		 
	   }
	 });
	$("#txtEmail").blur(function() {
	   if (this.value == ""){
		 this.value = "Email Address";
	   }
	 }); 
});


