// NA

function hoverMenu(obj, el, className) {
	var object = document.getElementById(obj);
	var list = object.getElementsByTagName(el);
	
	for (var a = 0; a < list.length; a++) {
		list[a].onmouseover = function() { this.className = this.className.replace(" " + className, ""); this.className = this.className.replace(className, "");this.className += " " + className; };
		list[a].onmouseout = function() { this.className = this.className.replace(className, "");};
	}
}

// Search	

function onclick_in() {
     var el = document.getElementById('sf');
     if (el.value == 'Vyhledat..') {
          el.value = '';
     }
}
 function onblur_in () {
     var el = document.getElementById('sf');
     if (el.value == '') {
          el.value = 'Vyhledat..';
     }
}

// Search	

function onclick_in1() {
     var el = document.getElementById('sf');
     if (el.value == 'Search..') {
          el.value = '';
     }
}
 function onblur_in1() {
     var el = document.getElementById('sf');
     if (el.value == '') {
          el.value = 'Search..';
     }
}

// Search	

function onclick_in2() {
     var el = document.getElementById('sf');
     if (el.value == 'Szukaj..') {
          el.value = '';
     }
}
 function onblur_in2() {
     var el = document.getElementById('sf');
     if (el.value == '') {
          el.value = 'Szukaj..';
     }
}


// Tisk

	function Print()
	{
		window.print();
	}

