$(document).ready(function(){
	$("a.animace_foto").fancybox();
	
	$("#loga img").each(function(){
		this.src = this.src.replace("_barva","_bila");
	});

	$("#loga img").hover(function(){
		this.src = this.src.replace("_bila","_barva");
		},
		function(){
		this.src = this.src.replace("_barva","_bila");
		}
	);
	
	$("#loga img").pngFix();

	$("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;
	});

});
