$(document).ready(function() {
    $('a.lost_password').each(function() {
        var url = $(this).attr('href');
        $(this).attr('href', '#');

        $(this).click(function() {
            createIframeLightbox(url, {title: 'Wachtwoord vergeten'}).tween(400, 350);
            return;
        });
    });
});

