/**
 * @author InfoServers
 */

window.onmouseover = function(){
	
	//Clear the search boxes everytime they click on them 
	document.getElementById('edEmail').onclick = function( e ){
		
		//If additional object is not created, create it and save initial value.
		if (!this.additional) {
			this.additional = {}
			this.additional.initValue = this.value;
		}
		
		if (this.value == this.additional.initValue ){
			this.value = '';
		}
		
	}
	
	document.getElementById('edEmail').onblur = function( e ){
		
		if (this.value == '') this.value = this.additional.initValue;
		
	}
	
	
	document.getElementById('edEmail').onmouseover = function( e ){	
		this.style.background = '#FEFE92';
	}
	
	document.getElementById('edEmail').onmouseout = function( e ){	
		this.style.background = '#FFF';
	}
	
	//END
	
}
