
/*
-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= ----------------------------------------------------
	JavaScript pro podtrhávání odkazů na soubory
-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= ----------------------------------------------------
*/

	function ActiveLink ()
	{
		if (window.event.srcElement.tagName == "A")
			window.event.srcElement.className = "underlineHover";
	}
	
	function InActiveLink ()
	{
		if (window.event.srcElement.tagName == "A")
			window.event.srcElement.className = "underline";
	}