 var ajaxResult;
 var gallery_status = 0; 
 var kontakt_status = 0; 
 var resizeTimer = null;

 $(window).bind('resize', function() { if (resizeTimer) clearTimeout(resizeTimer); resizeTimer = setTimeout(resizeOverlay, 20); });

 $(document).ready(function(){ 
	  kontakt_top  = document.documentElement.scrollTop +340;
	  screenheight = ($(window).height()< $(document.body).height())? $(document.body).height() : $(window).height();
	   //$(document.body).height(); 
	  
	  $(".anmeldung_popup").css("top",kontakt_top+"px"); 
 	  $(".overlay_popup").css("height",screenheight+"px");

      if($(".message").size()>0){ $(".overlay_popup").fadeIn("fast"); kontakt_status = 1; getMap();} 
      if($(".error01").size()>0){ $("#vorname").addClass("form_fehler"); } 
      if($(".error02").size()>0){ $("#nachname").addClass("form_fehler"); } 
      if($(".error03").size()>0){ $("#email").addClass("form_fehler"); } 
      if($(".error04").size()>0){ $("#nachricht").addClass("form_fehler"); } 
    
      $('#pass').keyup(function(e){  //alert(e.keyCode);
	      if(e.keyCode == 13){ javascript:document.Formular.submit(); }
      });    
    
 });
   
// Kontakt PopUp
// -------------

 function resizeOverlay(){ 	  screenheight = ($(window).height()< $(document.body).height())? $(document.body).height() : $(window).height(); $(".overlay_popup").css("height",screenheight+"px"); }

 function close_kntk() { if(kontakt_status == 1){ $(".overlay_popup").fadeOut("slow"); kontakt_status = 0; } }  

 function close_info() { $(".logoutinfo").fadeOut("slow",function(){ $("#logoutinfo").empty(); }) } 


 function open_kntk(){
	if(kontakt_status == 0){
	
	 	kontakt_top  = document.documentElement.scrollTop +340;
		screenheight = ($(window).height()< $(document.body).height())? $(document.body).height() : $(window).height();

	 	$(".anmeldung_popup").css("top",kontakt_top+"px");  
 		$(".overlay_popup").css("height",screenheight+"px");
 		$(".overlay_popup").fadeIn("fast");
	 	$("#user:input:text").focus();
 		kontakt_status = 1;
 	}else{
 		$(".overlay_popup").fadeOut("slow");  
 		kontakt_status = 0;
 	} 	
 }



