$(document).ready(function(){
	$("a[rel^='photo']").prettyPhoto({
		animationSpeed: 'fast', /* fast/slow/normal */
		padding: 0, /* padding for each side of the picture */
		opacity: 0.8, /* Value betwee 0 and 1 */
		showTitle: true, /* true/false */
		allowresize: true, /* true/false */
		counter_separator_label: ' ze ' /* The separator for the gallery counter 1 "of" 2 */
	});
	
	
	/*******************/
	/* PRETTYPHOTO & TRANSITIONAL
	/*
	/* CELEJ TENHLE SRANEC JE PRO IE V TRANSITIONAL, KDE SE LIGHTBOX ZOBRAZUJE PATNĚ
	/* NESCROLUJE JAKO V OSTATNICH PROHLIZECICH A VZDY SE OBRAZEK ZOBRAZI NAHORE
	/*******************/
	
	/* ZJISTIME ZDA JE PROHLIZEC IE */
	var isMSIE = /*@cc_on!@*/false;
	if (isMSIE) {
		
		/* ZJISTIME ZDA KLIKNUL NA HREF S REL A MA SE SPOUSTET PRETTYPHOTO */
		$("a[rel^='photo']").click(function() {
			
			/* VYPISE OBSAH PRVNIHO RADKU KDE SE NACHAZI DOCTYPE, A POKUD JE TRANSITIONAL, TAK SE SCROLL PRESUNE NAHORU */
			if (document.all[0].text.indexOf("Transitional") > 0) {
			
				window.scrollTo(0, 0);
				
			}
		});	
	}		
});
