// jQuery FunktionenjQuery(document).ready(function(){ 	// Start Animationen	// Teaser einblenden	jQuery('#teaser img').animate({		"left": "0"	}, 2000);	jQuery('#teaser_game img').animate({		"right": "0"	}, 2000);	jQuery('#teaser_cooking').animate({		"left": "100"	}, 2000);		// Liane einblenden und reinschieben	jQuery('#liane img').animate({		"top": "-45"	}, 3000);		// Menüpunkte einblenden	jQuery("#menu_parents").animate({		"opacity": "show",		"top": "100"	}, 3000);	jQuery("#menu_children").animate({		"opacity": "show",		"top": "170"	}, 3000);		// Früchte rechts einblenden und reinschieben	// Tiger rechts einblenden und reinschieben	setTimeout(function(){		jQuery('#fruechte_rechts img').animate({			"right": "-30"		}, 2000);		jQuery('#tiger img').animate({			"right": "-180",			"top": "-240"		}, 2000);	}, 500);		// Früchte links einblenden und reinschieben	// Blatt links einblenden und reinschieben	setTimeout(function(){		jQuery('#fruechte_links img').animate({			"left": "-250"		}, 2000);		jQuery('#blatt img').animate({			"left": "20",			"top": "180"		}, 2000);	}, 1000);		// Info und Kids Corner einblenden	setTimeout(function(){		jQuery('#corner_info').animate({			"top": "0"		}, 500);		jQuery('#corner_kids').animate({			"top": "0"		}, 500);	}, 2500);		// Footer einblenden und reinschieben	setTimeout(function(){		jQuery('#footer').animate({			"bottom": "0"		}, 500);		jQuery('#progressbar').hide(0);	}, 3000);});
