//
// zentrale Autostartfunktionen, werden auf ALLEN Seiten gestartet
//
$(document).ready(function(){
	//
	// Hauptmotivbild austauschen (sliden...)
	//
    $('#motiveMainImage').cycle({
		fx: 'fade', // blindX, blindY, blindZ, cover, curtainX, curtainY, fade, fadeZoom, growX, growY
					// scrollUp, scrollDown, scrollLeft, scrollRight, scrollHorz, scrollVert, shuffle
					// slideX, slideY, toss, turnUp, turnDown, turnLeft, turnRight, uncover, wipe, zoom
		speed:    1000, 
    	timeout:  6000,
		pause: 	  1,	// pause animation if Mouse is over image (0 off, 1 on)
		next:	  '#motiveMainImage'
	});
	
	//
	// Leuchtkasten für vergrößerte Bilder
	//
	$(function() {
        $('.gallery .imgDesc a.lbox').lightBox({
			txtImage: 'Bild',
			txtOf: 'von',
			containerResizeSpeed: 250
		});
    });
});


