YAHOO.util.Event.addListener(window,'load',setinputfocus);

function setinputfocus(){
	theInput = document.getElementsByTagName('input');
	for(i=0;i<theInput.length;i++){
		if(theInput[i].className == 'setSearchFocus'){
			theInput[i].onfocus = function(){
				if(this.value == setSearchValue){
					this.value = '';
				}
				else{
					this.select();
				}
			}
			theInput[i].onblur = function(){
				if(this.value == ''){
					this.value = setSearchValue;
				}
			}
		}
		if(theInput[i].className == 'setEmailFocus'){
			theInput[i].onfocus = function(){
				if(this.value == setEmailValue){
					this.value = '';
				}
				else{
					this.select();
				}
			}
			theInput[i].onblur = function(){
				if(this.value == ''){
					this.value = setEmailValue;
				}
			}
		}
	}
}
