document.observe('dom:loaded', function() {
    $('settings-link').observe('click', function(event) {
        event.stop();
        Modalbox.show(this.href,
            {title: 'Wappr Settings',
            width: 600}
        );
    });
})
