////////////
// Funkce //
////////////

// Aktivace lightboxu
$(document).ready(function() {
  $("a[rel*=lightbox]").lightBox();
});

// Funkce strpos (vyhledání, zdali se znak/řetězec vyskytuje)
function strpos (haystack, needle, offset) {
  var i = (haystack+'').indexOf(needle, (offset || 0));
  return i === -1 ? false : i;
}

// Přesměrování po potvrzení (např. při mazání)
function PotvrdPresmeruj(dotaz, adresa) {
  var dialog = confirm(dotaz);
  if(dialog){window.location.href = adresa;}
}

// Vypnutí označování textu
function disableSelection(target){
  if (typeof target.onselectstart!="undefined") { //IE route
    target.onselectstart=function(){return false}
  }
  else if (typeof target.style.MozUserSelect!="undefined") { //Firefox route
    target.style.MozUserSelect="none"
  }
  else { //All other route (ie: Opera)
    target.onmousedown=function(){return false}
    target.style.cursor = "default"
  }
}
