window.addEvent('domready', function() {
		$$('input').addEvent('click', function() {
			if(this.value == this.title || this.value == 'Suchbegriff' || this.value == 'keyword' || this.value == 'Name' || this.value == 'Telefon' || this.value == 'telephone' || this.value == 'e-Mail') {
				this.value = '';
			}
		});
		$$('input').addEvent('blur', function() {
			if(this.value == '' && this.title != '') {
				this.value = this.title;
			}
			if(this.value == '' && this.name == 'keywords') {
				if(TL_LANGUAGE == 'de') {
					this.value = 'Suchbegriff';
				} else {
					this.value = 'keyword';
				}
			}
			if(this.value == '' && this.name == 'Name') {
				this.value = 'Name';
			}
			if(this.value == '' && this.name == 'Telefon') {
				if(TL_LANGUAGE == 'de') {
					this.value = 'Telefon';
				} else {
					this.value = 'telephone';
				}
			}
			
			if(this.value == '' && this.name == 'EMail') {
				this.value = 'e-Mail';
			}
		});
		
		so_init();
		//Lightbox.init.bind(Lightbox)();
		Slimbox.scanPage();
		
});