jQuery.noConflict();

function isAnyInputFilled(form){
  var filled = jQuery(form).find('input:text[value!=""]');
  return filled.size()>0;
}

   
jQuery(document).ready(function() { 
    // call the tablesorter plugin 
    jQuery("#myTable").tablesorter({ 
        // sort on the first column and third column, order asc 
        sortList: [[0,0],[2,0]] 
    });
  
  jQuery('#content a[href$=.pdf]').addClass('pdfLink'); 
  jQuery('#content a:not([href*=zpskoda.cz])').addClass('outLink');
  jQuery('#content a[target=_blank]').addClass('targetLink');
  
  //jQuery('a:not([href*=zpskoda.cz])').addClass('outLink');  
});  

function displayVals() {
      var singleValues = jQuery("#radios input:checked").val();
      singleValues == 'zaměstnavatel' ? jQuery("#moreInfo").removeClass("hidden") : jQuery("#moreInfo").addClass("hidden") ;            
    }
jQuery("input").change(displayVals);
displayVals();  
/*
jQuery(document).ready(function(){
  jQuery("#myController").jFlow({
    slides: "#slides",
    controller: ".jFlowControl", // must be class, use . sign
    slideWrapper : "#jFlowSlide", // must be id, use # sign
    selectedWrapper: "jFlowSelected",  // just pure text, no sign
    auto: true,   //auto change slide, default true
    width: "800px",
    height: "300px",
    duration: 400   
  });
});*/
