
/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

//@initialize ajax info loader (on everytime any ajax function is called)
$(document).ready(function() {
    $("#loading").bind("ajaxSend", function(){
           $(this).show();
     }).bind("ajaxComplete", function(){
           $(this).hide();
     });
})

//@load flash video presentation
function video() {
    if($('#video').is(':visible')){
        $('#video').fadeOut();
    } else {
        $('#video').fadeIn();
    }
}

//@load flash fotogallery
function foto() {
    if($('#foto').is(':visible')){
        $('#foto').fadeOut();
    } else {
        $('#foto').fadeIn();
    }
}

function advSearch() {
    /*if($('.pnlAdvancedSearch').is(':visible')){
        $('.pnlAdvancedSearch').fadeOut();
    } else {*/
        $('.pnlAdvancedSearch').fadeIn();
		$('.colAdvancedSearch').hide();
    //}
}

//function checkDestination(){
//    return true;
//    if(document.searchform.rgc.value == "") {
//        alert("Pre spustenie vyhľadávania zadajte aspoň Destináciu");
//        return false;
//    }
//}

function stopAjax() {
    $('#loading').hide();
    //@tento abort to nejako dojebe
    xhr.abort();
}
