/* Menü */
jQuery(document).ready(function(){
						   
/* Slideshow */						   
	jQuery('#imageContainer').cycle({ 
	    fx:    'fade',
		randomizeEffects: true,
	    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()');


});