
OpenLayers.Control.ZoomBox.prototype.cursorstyle='crosshair';OpenLayers.Control.DragPan.prototype.cursorstyle='move';OpenLayers.Control.Navigation.prototype.deactivate=function(){this.zoomBox.deactivate();this.dragPan.deactivate();this.handlers.click.deactivate();return OpenLayers.Control.prototype.deactivate.apply(this,arguments);},OpenLayers.Control.Navigation.prototype.activate=function(){this.dragPan.activate();if(this.zoomWheelEnabled){this.handlers.wheel.activate();}
this.handlers.click.activate();return OpenLayers.Control.prototype.activate.apply(this,arguments);},OpenLayers.Control.NavToolbar.prototype.initialize=function(options){OpenLayers.Control.Panel.prototype.initialize.apply(this,[options]);this.cursorstyle='wait';this.addControls([new OpenLayers.Control.ZoomBox({title:'Zoomin',autoActivate:false}),new OpenLayers.Control.Navigation({title:'Verschieben'}),new OpenLayers.Control.ZoomOut({title:'Zoomout',autoActivate:false}),nav.previous,nav.next,new OpenLayers.Control.Button({title:'Drucken',displayClass:"olControlPrint",trigger:printMap}),new OpenLayers.Control.Button({title:'Erläuterung',displayClass:"olControlExplaination",trigger:showExplaination}),new OpenLayers.Control.Button({title:'Hilfe',displayClass:"olControlHelp",trigger:showHelp})]);};OpenLayers.Control.ZoomOut=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_TOOL,cursorstyle:'crosshair',draw:function(){this.handler=new OpenLayers.Handler.Click(this,{click:this.zoomOut,keyMask:this.keyMask},{delay:0});},zoomOut:function(position){this.map.setCenter(this.map.getLonLatFromPixel(position.xy),this.map.getZoom()-1);},CLASS_NAME:"OpenLayers.Control.ZoomOut"});
