
// Blend- und Dropdown Effekte für die Startsteite

function startseite() {
		jQuery('#slogan').fadeIn(9000);
		jQuery('#teaserbar').delay(1000).fadeIn(6000);
		jQuery('#bottom-menu').delay(1000).fadeIn(6000);
		jQuery('#teaser1').delay(1500).show("drop", {direction: "up"}, 1000, function() {
			jQuery('#teaser1').effect("bounce", {distance: 25, times: 5}, 1000);
			jQuery('#teaser2').show("drop", {direction: "up"}, 1000, function () {
				jQuery('#teaser2').effect("bounce", {distance: 20, times: 4}, 1000);
				jQuery('#teaser3').show("drop", {direction: "up"}, 1000, function(){
					jQuery('#teaser3').effect("bounce", {distance: 15, times: 3}, 1000);
					jQuery('#teaser4').show("drop", {direction: "up"}, 1000, function(){
						jQuery('#teaser4').effect("bounce", {distance: 10, times:2},1000);
					});
				});
			});
		});
		jQuery('#nullnill-1').delay(9500).fadeOut(1000);
		jQuery('#nullnill-2').delay(8500).fadeIn(1000, function() {
			jQuery('#nullnill-2').delay(1500).fadeOut(1000);
			jQuery('#nullnill-3').delay(500).fadeIn(1000, function() {
				jQuery('#nullnill-3').delay(1500).fadeOut(1000);
				jQuery('#nullnill-4').delay(500).fadeIn(1000);
			});
		});

}

