<!-- ACIONA ONLOAD
$(document).ready(function(){
LinksExternos();
$("a[href$=.jpg],a[href$=.JPG],.lightbox").removeAttr("target").prettyPhoto({theme:"facebook"});
VarreFormulario("form_contato");
SelecionaMenu("menu","","","");
SelecionaMenu("menu_rodape","","","");
SelecionaMenu("chamadas","","","");
menu();
});
//--> ACIONA ONLOAD

<!-- MENU JQUERY
function menu(){
$("div#menu ul li a")
.css({backgroundPosition:"-20px 35px"})
.mouseover(function(){
$(this).stop().animate({backgroundPosition:"(-20px 94px)"},{duration:500})
})
.mouseout(function(){
$(this).stop().animate({backgroundPosition:"(40px 35px)"},{duration:200,complete:function(){
$(this).css({backgroundPosition:"-20px 35px"})
}})
})
}
//--> MENU JQUERY