function ein(element){
	element.style.background='#fff';
	}
function aus(element){
	element.style.background='#efefef';
	}
function aus2(element){
	element.style.background='#bbb';
	}
	
function textein(element,standtext){
		if(element.value == standtext){
		element.style.color="#555555";
		element.style.fontStyle="normal";
		element.value="";
		}
	
	}
function textaus(element,standtext){
		if(element.value == ""){
		element.style.color="#555555";
		element.style.fontStyle="italic";
		element.value=standtext;
		}
	
	}
	




