// 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, "");};
	}
}


// Tisk

	function Print()
	{
		window.print();
	}
