


var show_PopUp;
var show;
var moving;

//function show_popups(id, top) {
//      show_PopUp = "open";
//      $("#popup_wrapper_"+id).stop().animate({"top": top+"px"}, 1000, "", 
//        function() {
//      
//      });
//}
//
//function hide_popups(id) {
//    $("#popup_wrapper_"+id).animate({"top": "-500px"}, 400, "", 
//      function() {
//
//      });
//}

function show_popups(standorte, top) {
  if(show_PopUp=="open") return; 
    $.each( standorte, function(i, n) {
      $("#popup_"+n).show();
      if(standorte.length == n) show = true;
    });
    if(show==true) {
      show_PopUp = "open";
      $("#popup_wrapper").stop(1,0).animate({"top": top+"px"}, 1000, "", 
        function() {
           
        });
    }
}

function hide_popups(standorte) {
  if(show_PopUp=="open") {
    $("#popup_wrapper").stop(1,0).animate({"top": "-500px"}, 400, "", 
      function() {
        $.each( standorte, function(i, n) {
          $("#popup_"+n).hide();   
            show_PopUp = "closed";
        }); 
      });
  }
}



//$("#content").oneTime(300, function() {  



