 <!--  Nastavení pro lightbox   -->        
$(document).ready(function(){
			$("a[rel^='prettyPhoto']").prettyPhoto({
				animationSpeed: 'normal', /* fast/slow/normal */
				padding: 40, /* padding for each side of the picture */
				opacity: 0.35, /* Value betwee 0 and 1 */
				showTitle: true, /* true/false */
				allowresize: true, /* true/false */
				counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
				theme: 'light_rounded', /* light_rounded / dark_rounded / light_square / dark_square */
				callback: function(){}
			});
		});
		


// Navigation

    function onmenu(obj,type){
        var obj = obj.getElementsByTagName('ul')[0];
        if (!obj) return;
        var obj_style = obj.style ? obj.style : obj;
        obj.style.visibility = type ? 'visible' : 'hidden';
    }


// Tisk

	function Print()
	{
		window.print();
	}
	
	//switch
function switcher(id) {
 obj = document.getElementsByTagName("div");
 if (obj[id].style.display == 'block'){
 obj[id].style.display = 'none';
 }
 else {
 obj[id].style.display = 'block';
 }
}

// Search	

function onclick_in() {
     var el = document.getElementById('email');
     if (el.value == 'Váš e-mail') {
          el.value = '';
     }
}
 function onblur_in () {
     var el = document.getElementById('email');
     if (el.value == '') {
          el.value = 'Váš e-mail';
     }
}

// Search	

function onclick_in2() {
     var el = document.getElementById('password');
     if (el.value == 'Heslo') {
          el.value = '';
     }
}
 function onblur_in2 () {
     var el = document.getElementById('password');
     if (el.value == '') {
          el.value = 'Heslo';
     }
}

// Search	

function onclick_in3() {
     var el = document.getElementById('sf');
     if (el.value == 'Hledat...') {
          el.value = '';
     }
}
 function onblur_in3 () {
     var el = document.getElementById('sf');
     if (el.value == '') {
          el.value = 'Hledat...';
     }
}
;

