$(document).ready(function() {
	$("#paticka img").each(function(){
		this.src = this.src.replace("_barva","_bila");
	});

	$("#paticka img").hover(function(){
		this.src = this.src.replace("_bila","_barva");
		},
		function(){
	  this.src = this.src.replace("_barva","_bila");
		}
	);
	
	$(document).pngFix();
	
	$(".fotka a").fancybox({
		"hideOnContentClick": true
	});

  $("a.okno-nove").attr("title", function() {
		return this.title + " (otevře se do nového okna)";
	});


	$("a.okno-nove").click(function(){
	  window.open(this);
	  return false;
	});
});
