Cufon.replace('.contact p');
Cufon.replace('.cufon'); 



function correctPNG() 
{
       var arVersion = navigator.appVersion.split("MSIE")
       var version = parseFloat(arVersion[1])
       if ((version >= 5.5) && (document.body.filters)) 
       {
              for(var i=0; i<document.images.length; i++)
              {
                     var img = document.images[i]
                     var imgName = img.src.toUpperCase()
                     if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
                     {
                            var imgID = (img.id) ? "id='" + img.id + "' " : ""
                            var imgClass = (img.className) ? "class='" + img.className + "' " : ""
                            var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
                            var imgStyle = "display:inline-block;" + img.style.cssText 
                            if (img.align == "left") imgStyle = "float:left;" + imgStyle
                            if (img.align == "right") imgStyle = "float:right;" + imgStyle
                            if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
                            var strNewHTML = "<span " + imgID + imgClass + imgTitle
                            + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
                            + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
                            + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
                            img.outerHTML = strNewHTML
                            i = i-1
                     }
              }
       }    
}

biografie = new Image;
fotos = new Image;
pers = new Image;
videos = new Image;
contact = new Image;
links = new Image;

biografie_animation = new Image;
fotos_animation = new Image;
pers_animation = new Image;
videos_animation = new Image;
contact_animation = new Image;
links_animation = new Image;

biografie.src = "/images/biografie_still.gif?rnd=" + Math.random();
fotos.src = "/images/fotos_still.gif?rnd=" + Math.random();
pers.src = "/images/pers_still.gif?rnd=" + Math.random();
videos.src = "/images/videos_still.gif?rnd=" + Math.random();
contact.src = "/images/contact_still.gif?rnd=" + Math.random();
links.src = "/images/links_still.gif?rnd=" + Math.random();

biografie_animation.src = "/images/biografie_animation.gif?rnd=" + Math.random();
fotos_animation.src = "/images/fotos_animation.gif?rnd=" + Math.random();
pers_animation.src = "/images/pers_animation.gif?rnd=" + Math.random();
videos_animation.src = "/images/videos_animation.gif?rnd=" + Math.random();
contact_animation.src = "/images/contact_animation.gif?rnd=" + Math.random();
links_animation.src = "/images/links_animation.gif?rnd=" + Math.random();

window.onload = correctPNG;
