﻿$(document).ready(function () {

    //Setup ligthbox
    $('#gallery a').lightBox({ fixedNavigation: true, txtImage: 'Billede', txtOf: 'af', keyToClose : 'l', keyToPrev : 'f' });


    $(".btn-contact-question").click(function () {

        $(".div-contactform-document").animate({ "top": "-85px" }, 1000);
    });

    $(".btn-contact-question-reset").click(function () {

        $(".div-contactform-document").animate({ "top": "0px" }, 1000);
    });
});
