$(window).bind('load',function(){		$('.formRow').each(function(){		this.onmouseover = function(){			this.className='formRowFocus';		}		this.onmouseout = function(){			this.className = 'formRow';		}	});		$('.formRow input').each(function(){		if(this.type=='text')			this.className = 'text';	});})
