window.onload = function() {
	var el = document.getElementById('bildsuche');
	if(el.value.indexOf("ID") > 0) {
		el.className = 'inactive';
	}
	el.onfocus = function() {
		if(this.value.indexOf("ID") > 0) {
			this.value = '';
			this.className = 'active';
		}
	}
	
}