/* Optional: Temporarily hide the "tabber" class so it does not "flash"
   on the page as plain HTML. After tabber runs, the class is changed
   to "tabberlive" and it will appear.
*/
document.write('<style type="text/css">.tabber{display:none;}<\/style>');
var tabberOptions = {
  'manualStartup':true
};

function initThetabs(){
var numeroCiudad = location.href.split("/")[4];
new Ajax.Updater('cargandoVuelos','/ciudades/'+ numeroCiudad +'/vuelos/crudas/',{
    method:'get',    
    onFailure: function(){ new Ajax.Updater('cargandoVuelos','/ciudades/'+ numeroCiudad +'/cines/mastarde/') },
    onComplete: function() { tabberAutomatic(tabberOptions); }
  });
}

if (window.attachEvent) {
   window.attachEvent("onload",initThetabs);
} else {
   window.addEventListener("load",initThetabs,false);
}

