/* * © Altamira Softworks, ltd 2006 - 2010 * info@altamira.sk | http://www.altamira.sk * All Rights Reserved */ $(document).ready(function($) { $('.hotelinfos').hide(); $('#progressBar').attr('class','step2'); }); //@ajaxovy request cez soap na ziskanie hotel info prostrednictvom giata_id hotelu. function ajax_loadHotelinfo(giata_id,toc,ref,reload) { if(giata_id>0) { if($('#hotelinfo_container').is(':visible') && reload!='reload'){ $('#hotelinfo_container').fadeOut(); } else { xhr = $.ajax({ url: 'https://www.reisen.cz/ajax/hotelinfo.php', cache: false, type: "GET", data: ({ giata_id : giata_id, toc : toc, ref : ref }), success: function(html){ $('#hotelinfo_container').html(html).hide().fadeIn('slow'); } }); } } else { alert('Bohužiaľ od tohto operátora nemáme k dispozícii popis hotela.'); } } function langSwitch(lang) { if(lang=='sk') { $('.sk_text').show(); $('.de_text').hide(); } else if (lang=='de') { $('.de_text').show(); $('.sk_text').hide(); } }