/**********************************
 * wwww.bergfelden.de             *
 * Programmierung und Copyright:  *
 * Steffen Heinzelmann 2002       *
 **********************************/
var bgcmarkiert="#EFEFEF";

/********************************************************************
 *  Tools
 ********************************************************************/
/* Bilderwechsel */
function nav(name, img)
{
   document[name].src=img;
}

function font_size(size) {
     for(var i = 0; i < document.getElementsByTagName("div").length; i++) {
          document.getElementsByTagName("div")[i].style.fontSize = size;
     }

}


/*************************************************
 Fensterbreite und Quicklink-Position
 ************************************************/
function quickLinkPosition() {
 var window_width_org = windowWidth();
 return (window_width_org/2) - (750/2) + 585;

}

function windowWidth()
{
 if (window.innerWidth) return window.innerWidth;
 else if (document.body && document.body.offsetWidth) return document.body.offsetWidth;
 else return 0;
}


