
function MudarOver(obj, bgcolor, f_local, f_arquivo, f_height, f_width) {
if (!obj.contains(event.fromElement)) {
  obj.bgColor = bgcolor;

if (f_local == 'ft_hoje'){
document.ft_hoje.src ="arquivos/fotos/"+f_arquivo;
document.ft_hoje.height = f_height;
document.ft_hoje.width  = f_width;
}
if (f_local == 'ft_mais'){
document.ft_mais.src ="arquivos/fotos/"+f_arquivo;
document.ft_mais.height = f_height;
document.ft_mais.width  = f_width;
}
if (f_local == 'ft_maximas'){
document.ft_maximas.src ="arquivos/fotos/"+f_arquivo;
document.ft_maximas.height = f_height;
document.ft_maximas.width  = f_width;
}
if (f_local == 'ft_gastro'){
document.ft_gastro.src ="arquivos/fotos/"+f_arquivo;
document.ft_gastro.height = f_height;
document.ft_gastro.width  = f_width;
}
if (f_local == 'ft_destinos'){
document.ft_destinos.src ="arquivos/fotos/"+f_arquivo;
document.ft_destinos.height = f_height;
document.ft_destinos.width  = f_width;
}
if (f_local == 'ft_arte'){
document.ft_arte.src ="arquivos/fotos/"+f_arquivo;
document.ft_arte.height = f_height;
document.ft_arte.width  = f_width;
}
if (f_local == 'ft_turismo'){
document.ft_hoje.src ="arquivos/fotos/"+f_arquivo;
document.ft_hoje.height = f_height;
document.ft_hoje.width  = f_width;
}

}}

function MudarOut(obj, bgcolor) {
if (!obj.contains(event.toElement)) {
  obj.bgColor = bgcolor;
}
}
