Select Page

Contact

USING CONTACT FORM 7

Submit the reservation form by entering the fields, then clicking SEND to go to the page buy tickets.

 

arrow-slide

jQuery(document).ready(function(JQuery){
jQuery(‘.ht-countdown-hook’).each(function() {
var $thisCountDown = jQuery(this);
var dayText = ($thisCountDown.data(‘day-text’) == undefined) ? ‘days’ : $thisCountDown.data(‘day-text’);
var hourText = ($thisCountDown.data(‘hour-text’) == undefined) ? ‘hours’ : $thisCountDown.data(‘hour-text’);
var minText = ($thisCountDown.data(‘min-text’) == undefined) ? ‘minutes’ : $thisCountDown.data(‘min-text’);
var secText = ($thisCountDown.data(‘sec-text’) == undefined) ? ‘secconds’ : $thisCountDown.data(‘sec-text’);
if( secText == ” ){
$thisCountDown.countdown({
date: jQuery(this).data(‘date’),
refresh: 1000*60,
render: function(data) {
jQuery(this.el).html(
“” + this.leadingZeros(((data.years > 0) ? data.years * 365 : data.days) , 2) + “” + dayText + ” “+
“” + this.leadingZeros(data.hours, 2) + ” ” + hourText + “”+
“” + this.leadingZeros(data.min, 2) + ” ” + minText + “”);
}
});
}else{
$thisCountDown.countdown({
date: jQuery(this).data(‘date’),
refresh: 1000,
render: function(data) {
jQuery(this.el).html(
“” + this.leadingZeros(((data.years > 0) ? data.years * 365 : data.days) , 2) + “” + dayText + ” “+
“” + this.leadingZeros(data.hours, 2) + ” ” + hourText + “”+
“” + this.leadingZeros(data.min, 2) + ” ” + minText + “”+
“” + this.leadingZeros(data.sec, 2) + ” ” + secText + “”);
}
});
}
})
});
Option 1Option 2