<!-- MODULE EIN/AUSFAHREN -->   
$(document).ready(function(){
    
	var stoggle = 0;
	
    $("#meine_module").click(function () {
      //$("#modul_box_2").slideToggle(200);
	  if (stoggle == 0){
	  $("#modul_box_2").animate({"top": "+=205px"}, "slow");
	  document.getElementById("pfeile").style.display = "block";
	  stoggle = 1;
	  }else{
	   $("#modul_box_2").animate({"top": "-=205px"}, "slow");
	   document.getElementById("pfeile").style.display = "none";
	   stoggle = 0;
	  }

    });    

  });
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}



<!-- ACCORDION JS -->
//	$(document).ready(function(){
//		$("dd:not(:first)").hide();
//		$("dt a").click(function(){
//			$("dd:visible").slideUp("fast");
//			$(this).parent().next().slideDown("fast");
//			return false;
//		});
//	});

<!-- ACCORDION Menü  -->
	$(document).ready(function(){
		
		$("dd:not(:first)").hide();
		var acc_n = 0;
		var acc_b = 1;
		
		$("#nachrichten").click(function(){
			if(acc_n == 0){
				$("#nachrichten_inh").slideUp("fast");
				document.getElementById("nachrichten").style.backgroundImage="url(images/layout/pfeil_oben.jpg)"
				acc_n = 1;
			}else{
				$("#nachrichten_inh").slideDown("fast");
				document.getElementById("nachrichten").style.backgroundImage="url(images/layout/pfeil_unten.jpg)"
				acc_n = 0;
			}
		});
		
		$("#bewertungen").click(function(){
			if(acc_b == 0){
				$("#bewertungen_inh").slideUp("fast");
				document.getElementById("bewertungen").style.backgroundImage="url(images/layout/pfeil_oben.jpg)"
				acc_b = 1;
			}else{
				$("#bewertungen_inh").slideDown("fast");
				document.getElementById("bewertungen").style.backgroundImage="url(images/layout/pfeil_unten.jpg)"
				acc_b = 0;
			}
		});		

	});



<!-- SUCHEINGABE -->
	function enterForm(){
	if(document.getElementById("such_eingabe").value == 'Ihre Sucheingabe'){
		document.getElementById("such_eingabe").value = '';
		}

	}
<!-- SUCHEINGABE -->
	function enterForm1(){
	if(document.getElementById("such_eingabe_1").value == 'Ihre Sucheingabe'){
		document.getElementById("such_eingabe_1").value = '';
		}
	}	

<!-- SUCHEINGABE AUTO COMPLETE -->
  $(document).ready(function(){
    var ausgabe = document.getElementById("such_ausgabe").value;
	var data1 = ausgabe.split("__");
$("#such_eingabe").autocomplete(data1);
$("#such_eingabe_1").autocomplete(data1);
  });


<!-- Bewertungs-Seite - Tabellenzeile show/hide -->
	function show_beratung(antwort){
			if(antwort == "ja"){
				$("#beratung").slideDown("fast");
				//document.getElementById("beratung").style.visibility="visible";
			}else{
				$("#beratung").slideUp("fast");
				//document.getElementById("beratung").style.visibility="hidden";
			}
		}
