function toonflap(){
    newtop = '';
    if($('#flap').css('marginTop')=="427px"){
        newtop = '0px';
		 $('#klapimg').attr('src', 'pic/open.png');
    }
    else{
        newtop = '427px';
		 $('#klapimg').attr('src', 'pic/dicht.png');
    }
    $('#flap').animate({
        marginTop: newtop
      }, 500, function() {
        // Animation complete.
      });
}
