$('#floatlayer').show();

$("#link_beratung").click(function(e){
    $('#slider').anythingSlider(4);
    e.preventDefault();
});

$("#link_anforderungen").click(function(e){
    $('#slider').anythingSlider(3);
    e.preventDefault();
});


$('ul#leistungen_dropdown').hide();

$("#nav_leistungen").hover(
  function () {
    
     $('ul#leistungen_dropdown').show();
    
    $('ul#leistungen_dropdown').stop().animate({height: '230'}, 500 );
  },
  function () {
    $('ul#leistungen_dropdown').stop().animate({height:'0'},200, function() {
      $('ul#leistungen_dropdown').hide();
  });
  }
);


$('#weiter_btn').click(function(){
    document.location.hash="splash";
	$('#floatlayer').hide();
	$('#jubilaeum').delay(1300).fadeOut(1600);
    });

$('#clicklayer').click(function(){
    document.location.hash="splash";
	$('#floatlayer').hide();
	$('#jubilaeum').delay(1300).fadeOut(1600);
    });

if(document.location.hash=="#splash") {
    $('#floatlayer').hide();
    $('#jubilaeum').delay(1300).fadeOut(1600);
    }

