/**
 * add datepicker to booking.com teaser
 */
window.addEvent('domready', function()
{
  new Calendar({
      wrapper_checkin_year_month: { checkin_monthday: 'd', checkin_year_month: 'Y-n' },
      wrapper_checkout_year_month: {  checkout_monthday: 'd', checkout_year_month: 'Y-n' }
    }, {
        pad: 1,
        direction: 0,
        title: i18nModuleJscalendar['title'],
        showCloseButton: true,
        months: [
                i18nModuleDate_terms['month_01'], i18nModuleDate_terms['month_02'], i18nModuleDate_terms['month_03'],
                i18nModuleDate_terms['month_04'], i18nModuleDate_terms['month_05'], i18nModuleDate_terms['month_06'],
                i18nModuleDate_terms['month_07'], i18nModuleDate_terms['month_08'], i18nModuleDate_terms['month_09'],
                i18nModuleDate_terms['month_10'], i18nModuleDate_terms['month_11'], i18nModuleDate_terms['month_12']
            ],
        days: [
                i18nModuleDate_terms['day_07'], i18nModuleDate_terms['day_01'], i18nModuleDate_terms['day_02'],
                i18nModuleDate_terms['day_03'], i18nModuleDate_terms['day_04'], i18nModuleDate_terms['day_05'], i18nModuleDate_terms['day_06']
            ],
        offset: 1,
        draggable: false
        }
     );
});
