// JavaScript Document
function menu_on(entity, a, b){
	entity.style.backgroundColor = a;
	entity.style.color = b;
	entity.style.cursor = "pointer";
}

function menu_off(entity, a, b){
	entity.style.backgroundColor = a;
	entity.style.color = b;
}
	
function suchformular_on(inhalt){
	if(inhalt.value=='Suchbegriff'){inhalt.value=''}
}

function suchformular_off(inhalt){
	if(inhalt.value==''){inhalt.value='Suchbegriff'}
}
