<!--
////////////////////////////////////////////////////////////////////////////////////
// title ///////////////////////////////////////////////////////////////////////////

  if(!document.layers)  //  optimize source title for SE
    document.title="photodesign: berlin mitte";

//  ////////////////////////////////////////////////////////////////////////////////
//  onload, onunload ///////////////////////////////////////////////////////////////


//  ////////////////////////////////////////////////////////////////////////////////
//  set event handlers  ////////////////////////////////////////////////////////////

  function set_menu_and_links(){ //  triggered onload
    if(dom){

      for(var i=0;i<obj("a").length;i++){
        //  add onclick=blur_dom(this) to all suitable links
        if(obj("a")[i].href && obj("a")[i].href.indexOf("#")==-1){
          add_event(obj("a")[i],"onclick","blur_dom(this);");
        }
      }
    }
  }

  function add_event(myObj,handler,addFunction){  //  add eventhandler onload to keep HTML clean
    addFunction = (ie)? new Function(addFunction) : addFunction;
    if(myObj)
      myObj.setAttribute(handler,addFunction);
  }
// -->
