$(function() {
  $('#zeppelin').click(function(event){
    event.preventDefault();
    var left = $(this).offset().left;
    $(this).animate({'left': -(left + 200)}, 2000, 'easeInQuad', function() {
      $(this).addClass('flip-horizontal');
      $(this).animate({'top': 0, 'left': (document.width - left + 30)}, 2500, 'easeInQuad', function() {
        $(this).removeClass('flip-horizontal');
        $(this).animate({'top': 0, 'left': 0}, 1300, 'easeOutExpo');
      });
    });
  });

  $('.close').live('click', function(event) {
    event.preventDefault();
    $(this).parents('.closeable:first').effect('blind');
  });

});

function popup(url, title, width, height) {
 fenster = window.open(url, title, "width="+ width +",height="+ height +",resizable=yes");
 fenster.focus();
 return false;
}

