function aktualizujOdkazy() {
  if(!document.getElementsByTagName) return false;
  var links = document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if(links[i].className.match("popup")) {
      links[i].onclick = function () {
        return !window.open(this.href);
      }
    }
  }
}
window.onload=aktualizujOdkazy;


$().ready(function() {
jQuery.each(jQuery.browser, function(i) {
  if($.browser.msie){
     $(".fotopanel a.show-map").addClass("popup");
     $(".fotopanel a.show-map").removeClass("show-map");
  }else{
     
  }
});
});


$(document).ready(function(){
	$.fn.colorbox.settings.transition = "fade";
	$.fn.colorbox.settings.bgOpacity = "0.9";
	$.fn.colorbox.settings.contentCurrent = "Fotografie {current} z {total}";
	$(".cpModal").colorbox();
	$(".show-map").colorbox({contentWidth:"900px", contentHeight:"700px", contentIframe:true});
	$('.fotopanel-news img').preload({placeholder:'http://mokrinky.cz/test/js/placeholder.gif'});
});


