$(document).ready(function(){   
    $('.gallery a').lightBox({fixedNavigation:true});
    $('.footer').height($(window).height()-$('.container').height()-28);
    $('.btnClose').toggle(function(){
        $('.box').animate({
            'top': '560px'
        },1000,function(){
            $('.btnClose').attr('src','templates/Bilder/btn_auf.png').css('top','-30px').hide().fadeIn();
        });
    },function(){
    $('.btnClose').attr('src','templates/Bilder/btn_zu.png').css('top','5px');
    $('.box').animate({
            'top': '60px'
        },1000);
    });
});



