$(function(){
//	$("#jquery-test").html("jQuery is loaded");
});
$(document).ready(function(){
  $('.upcoming').click(function(e){
    e.preventDefault();
    $('html, body').animate({ scrollTop: 0 }, "slow");
    $('#overlay').show();
    $('#flyer').fadeIn();
  });
  $('#overlay').click(function(){
    $('#flyer').hide();
    $($(this)).hide();
  });
  $('.kredit_link').click(function(e){
    e.preventDefault();
    $('html, body').animate({ scrollTop: 0 }, "slow");
    $('#overlay').show();
    $('#kredit').fadeIn();
  });
  $('#overlay').click(function(){
    $('#kredit').hide();
    $($(this)).hide();
  });
    $('.contact').click(function(e){
    e.preventDefault();
    $('html, body').animate({ scrollTop: 0 }, "slow");
    $('#overlay').show();
    $('#contact').fadeIn();
  });
  $('#overlay').click(function(){
    $('#contact').hide();
    $($(this)).hide();
  });
});

