/* JavaScript Margrit Kennedy */
/* """""""""""""""""""""""""" */

/* ########################################################################## */
/* Grundlegendes */

$(document).ready(function() {
	
	$("#HeaderPix1").delay(500).fadeIn(1500);
	$("#HeaderPix2").delay(5000).fadeIn(1000);
	$("#HeaderPix3").delay(9500).fadeIn(1000);
	$("#HeaderPix4").delay(16000).fadeIn(1000);
	$("#HeaderPix5").delay(24000).fadeIn(1000);
	
});
 
/* Grundlegendes */
/* ########################################################################## */

/* ########################################################################## */
/* FancyBox */

$(document).ready(function() {
	
	$("a.fancyImg").fancybox({
		'transitionIn'    :   'fade',
		'transitionOut'   :   'fade',
		'speedIn'         :   600, 
		'speedOut'        :   600, 
		'overlayShow'     :   true, 
		'overlayColor'    :   '#333333',
		'titlePosition'   :   'over',
		'padding'         :   '5',
	});
	
	$("a.fancyGal").fancybox({
		'transitionIn'    :   'fade',
		'transitionOut'   :   'fade',
		'speedIn'         :   600, 
		'speedOut'        :   600, 
		'overlayShow'     :   true, 
		'overlayColor'    :   '#333333',
		'cyclic'          :   'cyclic',
		'titlePosition'   :   'over',
		'padding'         :   '5',
	});
	
	$("a.fancyTxt").fancybox({
		'transitionIn'    :   'fade',
		'transitionOut'   :   'fade',
		'speedIn'         :   600, 
		'speedOut'        :   600, 
		'overlayShow'     :   true,
		'overlayColor'    :   '#333333',
		'titleShow'       :   false,
	});
	
});

     
/* FancyBox */
/* ########################################################################## */
