$(document).ready(function(){
/* ### Beginn ### */
/*Lightbox */
	$('a.galerie').lightBox();
/* Slideshow */
	$('#bildwechsel').cycle({
		fx:    'fade',
		speed:  2500
	});
/* Mousover Galerie */
	$("#mylink a").hover(function(){
		var largePath = $(this).attr("href");
		$("#bild").attr({ src: largePath });
		return false;
	});
	$("#mylink a").click(function(){
		var largePath = $(this).attr("href");
		$("#bild").attr({ src: largePath });
		return false;
	});
/* Blur */
	$('a').attr('onfocus','if(this.blur)this.blur()');


/* ### Ende ### */
});
