﻿jQuery(document).ready(function() {
    
    var active_offers_destination = jQuery("#active_offers_destination").text();
    var active_tab = (active_offers_destination == "exotic destinations") ? 0 : 1;
    jQuery("#accordion").accordion({ active: active_tab, autoHeight:false });
});
 

