window.addEvent('domready', function(){
	  initFormsEvents();
 });
	
	
/* Form Events */
function initFormsEvents(){
	if( $('loginEmail') ) $('loginEmail').addEvent('focus',function(){ this.value = ''; });
	if( $('loginPassword') ) $('loginPassword').addEvent('focus',function(){ this.value = ''; });
	$('key').addEvent('focus',function(){ this.value = ''; });
}

