function show_x(x) {
	x = document.getElementById(x);
	x.style.display="inline";
}

function hide_x(x) {
	x = document.getElementById(x);
	x.style.display="none";
}

function podmenu_over(id) {
	elem1 = document.getElementById('td_'+id);
	elem2 = document.getElementById('a_'+id);

	elem1.style.background='#f36f21';
	elem2.style.color='#ffffff';
}

function podmenu_out(id) {
	elem1 = document.getElementById('td_'+id);
	elem2 = document.getElementById('a_'+id);

	elem1.style.background='#e7e7e7';
	elem2.style.color='#000000';
}