function onAfter() { }
 
function onBefore() { 
$('.beschreibung').html("").append( this.alt ); 
$('.copyright').html("").append( $(this).attr('copyright') ); }


$("a.big").toggle(
		function() {
			$("div.einzelbild img.bild").toggle();				
			$(".einzelbild .bild_to_big").animate({left: 420 }, 160);
			$('.einzelbild a.big').animate({height: 317 }, 135);
			$("div.einzelbild").animate({width: 470 }, 200);
			return false;
		},
		function() {
			$("div.einzelbild img.bild").toggle();
			$(".einzelbild .bild_to_big").animate({left: 160 }, 160);
			$('.einzelbild a.big').animate({height: 135 }, 135);
			$("div.einzelbild").animate({width: 200 }, 200)
			return false;
		}
	);	

$(".slideshow").hover(
	function () {
		$(".slideshow .controls").fadeIn();
	}, 
	function () {
		$(".slideshow .controls").fadeOut();
	}
);	

$('div.slides').cycle({ 
	timeout: 0,
    fx: 'scrollLeft', 
    before:  onBefore, 
    after:   onAfter,
	next: '.forward',
	prev: '.backward'
});	
