Event.observe(window,"load",function(){
	$("suche").getInputs().each(function(elm){
		Element.extend(elm);
		elm.tooltip=elm.title;
		elm.title="";
		elm.onmouseover=function(){$("tooltip_help").update(this.tooltip);return false;}
		elm.onmouseout=function(){$("tooltip_help").update("");return false;}
	});
	$("suche").onsubmit=function(){
		inputtext=$("suche").getInputs("text","q")[0].value;
		inputvalue=parseInt(inputtext,10);
		if((inputvalue>9999)&&(inputtext.length==5)){
			//	product number
			self.location.href="/product/"+inputtext+"/";
			return false;
		}else{
			//	weiter nach google.ch
			self.location.href=this.action+"?"+$("suche").serialize();
			return false;
		}
	}
});