<!-- 
agent = navigator.userAgent;
browserVer = 2;
if (agent.substring(0,7) == "Mozilla") {
    if (parseInt(agent.substring(8,9)) >= 3) {browserVer = 1;}
}

if (browserVer == 1) {
 
 on1 = new Image;
 on2 = new Image;
 on3 = new Image;
 on4 = new Image;
 on5 = new Image;
 on6 = new Image;
 on7 = new Image;
 on8 = new Image;
 on9 = new Image;
 on10 = new Image;

 off1 = new Image;
 off2 = new Image;
 off3 = new Image;
 off4 = new Image;
 off5 = new Image;
 off6 = new Image;
 off7 = new Image;
 off8 = new Image;
 off9 = new Image;
 off10 = new Image;

 on1.src="../images/bt_contatos_on.gif"
 on2.src="../images/bt_curriculo_on.gif"
 on3.src="../images/bt_entrevistas_on.gif"
 on4.src="../images/bt_home_on.gif"
 on5.src="../images/bt_links_on.gif"
 on6.src="../images/bt_livros_on.gif"
 on7.src="../images/bt_artigos_on.gif"
 on8.src="../images/bt_palestras_on.gif"
 on9.src="../images/bt_textos_on.gif"
 on10.src="../images/bt_videos_on.gif"
 
 off1.src="../images/bt_contatos_off.gif"
 off2.src="../images/bt_curriculo_off.gif"
 off3.src="../images/bt_entrevistas_off.gif"
 off4.src="../images/bt_home_off.gif"
 off5.src="../images/bt_links_off.gif"
 off6.src="../images/bt_livros_off.gif"
 off7.src="../images/bt_artigos_off.gif"
 off8.src="../images/bt_palestras_off.gif"
 off9.src="../images/bt_textos_off.gif"
 off10.src="../images/bt_videos_off.gif"
}

function troca(atual, novo) {
     if (browserVer == 1) document.images[atual].src = eval(novo + ".src");
}
// -->
