// JavaScript  für JQuery Effekte auf Startseite (Alle Angebote)
 $(document).ready(function(){
//Elemente ausblenden; DOM umbauen
$("#alleAngeboteNoScript").hide();
$("#alleAngebote").hide().insertAfter($("#topFour")).css("padding-top","0");
// bei Klick Effekt ausführen
$("#angebotFunktionenOeffner a").click(function(event){
	 event.preventDefault();
	$("#alleAngebote").slideDown(1500,function () {
		$("#angebotFunktionenUp").show(1000);
		});
	$("#angebotFunktionen").fadeOut("normal");	
	
											  })
// Element zum schließen 
$("#angebotFunktionenSchliesser").css("cursor","pointer")
.click(function(){
	$("#alleAngebote").slideUp(1500);
	$("#angebotFunktionenUp").fadeOut("normal",function(){
	$("#angebotFunktionen").slideDown("normal");
														});
		
	
											  })
  });