$(document).ready(function () {

    // Datepicker
    $(".date-picker").datepicker({
        showOn: 'both',
        changeMonth: true,
        changeYear: true,
        dateFormat: 'dd/M/yy',
        buttonImage: '/content/images/icons/calendar.png'
    });

    // Close notifications: fadeout after 8 seconds
    if ($('#status-line').is(':visible')) {
        setTimeout(function () {
            $('#status-line').fadeOut('slow');
        }, 8000);
    }

    // fancybox - lightbox and slideshow
    $(".fancybox").fancybox({
        'zoomOpacity': true,
        'overlayShow': true,
        'zoomSpeedIn': 500,
        'zoomSpeedOut': 500
    });

    $(".message").fancybox({
        'transitionIn': 'elastic',
        'transitionOut': 'elastic',
        'zoomSpeedIn': 500,
        'zoomSpeedOut': 500
    });
    
});
 





