/*
thisPic = 0;
var myPix;
imgCt = myPix.length - 1
function chgSlide(direction) {
    if (document.images) {
        thisPic = thisPic + direction
        if (thisPic > imgCt) {
            thisPic = 0
        }
        if (thisPic < 0) {
            thisPic = imgCt
        }
        document.getElementById("galeriebild").src = myPix[thisPic]
    }
}

  
function pic_btn(pic) {
    document.getElementById("galeriebild").src = pic;
}
*/
 
/* Google Analytics */

/*
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

var pageTracker = _gat._getTracker("UA-5031447-1");
pageTracker._initData();
pageTracker._trackPageview();
*/