function move_i(what) { 
	what.style.background='#A6C4E1';
}

function move_o(what) {
	what.style.background='#7EA9D3';
}

function tabela_click(src) {
	top.location.replace(''+src+'');
}

function tabela_out(src) {
	src.style.cursor = 'default';
	src.bgColor = '#7EA9D3';
}

function tabela_over(src) {
	src.style.cursor = 'hand';
	src.bgColor = '#A6C4E1';
}

