﻿$(document).ready(function () {
    $("a[rel='slides']").colorbox({
        current: 'Billede {current} ud af {total}',
        onOpen: function () {
            $('#rollehjul').css('display', 'none');
            $('#colorbox').css('top', '0px');
        },
        onClosed: function () {
            $('#rollehjul').css('display', '');
        },
        onComplete: function () {
            $('#colorbox').css('top', '0px');
        },
        onLoad: function () {
            $('#colorbox').css('top', '0px');
        }

    });
});

function OpenLink(link) {
    $('#' + link).click();
    return false;
}
