
function objMenu2 (y1) {
	return document.getElementById(y1).style.backgroundColor='#2154AD', document.getElementById(y1).style.textDecoration='underline';
	}

function objMenu3 (y2) {
	document.getElementById(y2).style.fontWeight='bold';
	}

function objMenu4 (y3) {
	document.getElementById(y3).style.backgroundColor='#FFFFFF', document.getElementById(y3).style.textDecoration='underline';
	}

function odkazyGenMouseOver (id1,id2) {
	return document.getElementById(id1).style.textDecoration='underline', document.getElementById(id2).style.display='block';
	}

function odkazyGenMouseOut (id1,id2) {
	return document.getElementById(id1).style.textDecoration='none', document.getElementById(id2).style.display='none';
	}

function odkazyGenMouseOver2 (id1) {
	return document.getElementById(id1).style.textDecoration='underline';
	}

function odkazyGenMouseOut2 (id1) {
	return document.getElementById(id1).style.textDecoration='none';
	}

