/* Menü */
$(document).ready(function(){
/* Menue */								
	$('#sf-menu').superfish({
		autoArrows:  false,  
		dropShadows: false 						   
	});
	
	$('#header').cycle({
            fx:    'fade',
            speed:  2500
    });

/* 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;
   });	
/* Blur */   
   jQuery('a').attr('onfocus','if(this.blur)this.blur()');

});
