function inputBg(inputObj,e) {
	if( !inputObj ) return;
	if( e && e.type == 'focus' ) inputObj.className = inputObj.className.replace( '-off', '-on' );
	else if( inputObj.value == '' ) inputObj.className = inputObj.className.replace( '-on', '-off' );
}