window.addEvent('domready', function(){
/* Tips 2 */
	var Tips2 = new Tips($$('.Tips2'), {
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(1);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		}
	});
});

function make_form_normal(formfeld) {
		document.getElementById(formfeld).style.border = "1px solid #ddd";
}

function empty_field_on_focus(standardfeld) {
	if(document.getElementById('suchfeld').value=='suchen...') { 
		document.getElementById('suchfeld').value=''; 
	}
}
