/* Menü */
jQuery(document).ready(function(){
   jQuery('li.headlink').hover(
      function() { jQuery('ul', this).css('display', 'block'); },
      function() { jQuery('ul', this).css('display', 'none'); }
         );
        jQuery('#gallery a').lightBox({
                overlayBgColor: '#DBD0D4'
        });
        jQuery('#sf-menu').superfish({
                autoArrows:  false,
                dropShadows: false
        });
});
jQuery(document).ready(function(){

/* Slideshow */
        jQuery('#bild1').cycle({
            fx:    'fade',
            speed:  2500
    });

/* Popup Fenster */
        jQuery('.popup').click(function(){
            open(this.href, 'f', 'height=400, width=400, resizable=yes, scrollbars=no');
                return false;
        });
/* Mousover Galerie */
   jQuery("#mylink a").hover(function(){
       var largePath = jQuery(this).attr("href");
       jQuery("#bild").attr({ src: largePath });
       return false;
   });
   jQuery("#mylink a").click(function(){
       var largePath = jQuery(this).attr("href");
       jQuery("#bild").attr({ src: largePath });
       return false;
   });
/* PDF Dateien mit Image versehen */
   jQuery('a[href$=pdf]').addClass('pdf');
/* Zebra */
   jQuery('#zebra tr:nth-child(even)').addClass('gerade');
/* Blur */
   jQuery('a').attr('onfocus','if(this.blur)this.blur()');


});