﻿$(document).ready(function() {

    //Cycle Header
    $('.promo').cycle({
        fx: 'fade',
        after: function() {
            $('#banner-text-content').html($('div', $(this)).html());
        }
    });

    //Calendar
    $("#bb_dateFrom").datepicker({
        changeMonth: true,
        changeYear: true,
        dateFormat: 'd M y',
        minDate: '0d',
        altField: '#bb_dateFrom_hide',
        altFormat: 'yy-mm-dd',
        defaultDate: null
    });
    $("#bb_dateTo").datepicker({
        changeMonth: true,
        changeYear: true,
        dateFormat: 'd M y',
        minDate: '0d',
        altField: '#bb_dateTo_hide',
        altFormat: 'yy-mm-dd'
    });
    
    //Banner overlay
    $('<div></div>').addClass('left').appendTo($('.promo'));
    $('<div></div>').addClass('right').appendTo($('.promo'));
    
    $(".colorboximage").colorbox({maxWidth:'80%', maxHeight:'80%'});
});