//******* ScrollTo mit JQuery (für alle #Links der Seite) ****************/

$(document).ready(function() {
	$('a[href*=#]').bind("click", function(event) {
		event.preventDefault();
		var ziel = $(this).attr("href");

		$('html,body').animate({
			scrollTop: $(ziel).offset().top
		}, 1000 , function (){location.hash = ziel;});
});
return false;
});



//******* Slideshow mit JQuery ****************/

/* sanftes Überblenden */
$('#diaslideshow').cycle({ 
    fx:    'fade', 
    speed:  2000,
    timeout:  1000
 });

/* Blättern vertikal */
/*$('#diaslideshow').cycle({ 
    fx:		'scrollDown',
    speed:    1000, 
    timeout:  3000,
    random:  1 
});*/





