$(document).ready(function(){
						   
/* Slideshow */						   
	$('#imageContainer').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;
   });	


});
