jQuery().ready(function(){
	
	// Hintergrundbilder
	jQuery('BODY').bgStretcher({
		imageContainer:             'bgstretcher',
		resizeProportionally:       true,
		resizeAnimate:              false,
		images:                     ['images/dragon.jpg','images/tarzan.jpg','images/potsdam.jpg','images/baeume.jpg','images/paula.jpg','images/home.jpg','images/sonnenschirm.jpg','images/uhr.jpg'],
		imageWidth:                 1024, //Original image’s width.
		imageHeight:                768, //Original image’s height.
		maxWidth:					'auto', 
		maxHeight:					'auto',
		nextSlideDelay:             5000, //(3 seconds) 	Numeric value in milliseconds. The parameter sets delay until next slide should start.
		slideShowSpeed:             'slow', // Numeric value in milliseconds or jQuery string value (’fast’, ‘normal’, ’slow’). The parameter sets the speed of transition between images.
		slideShow:                  false, // Allows or disallows slideshow functionality.  // true ore false
		transitionEffect:			'fade', // none, fade, simpleSlide, superSlide
		slideDirection:				'E', // N, S, W, E, (if superSlide - NW, NE, SW, SE)
		sequenceMode:				'normal', // back, random
		buttonPrev:					'',
		buttonNext:					'',
		pagination: 				'',
		anchoring: 					'left top', // right bottom center
		anchoringImg: 				'left top', // right bottom center
		preloadImg:					false, // true ore false
		stratElementIndex:			0,
		callbackfunction:			null
	});
	
	// Mouseover für Visitenkarte
	var imgSrcHome = jQuery('#vk-ishakdesign').attr("src");	
	$("#vk-ishakdesign").hover(function() {
		$(this).attr("src","images_content/vk-ishakdesign-over.png");
			}, function() {
		$(this).attr("src",imgSrcHome);
	});	

});
