$(document).ready(function() {
    $.datepicker.regional['nl'];
    $(".datepicker").datepicker({
        showOtherMonths: true, 
        selectOtherMonths: true,
        changeMonth: true,
        changeYear: true
    });

    $("a[rel=fb]").fancybox({
        'titlePosition' : 'over',
        'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
            firstpart = title.indexOf('|');
            format_title = title;
            if (firstpart != -1) {
                format_title = '<strong>' + title.substring(0, firstpart) + '</strong>';
                format_title += title.substring(firstpart);
            }
            return '<span id="fancybox-title-over">' + format_title + '</span>';
        }
    });
});

