<!-- ACIONA ONLOAD
$(document).ready(function(){
LinksExternos();
SelecionaMenu("menu","selecao","")
VarreFormulario("form_contato");
menu("menu");
slides("tela");
$("img#banner").attr("src","/image/banner.gif");
$("div#fotos a[href^=.jpg],div#fotos a[href^=.JPG]").lightBox();
});
//--> ACIONA ONLOAD

<!-- SLIDES
function slides(id){
if(document.getElementById(id)){
$("div#"+id+" ul").shuffle();
$("div#"+id).anythingSlider({
easing:"easeInOutBack",
easeTime:2200,
autoPlay:true,
delay:3000,
startStopped:false,
animationTime:600,
hashTags:true,
buildNavigation:true,
pauseOnHover:true,
startText:"Play",
stopText:"Stop"
});
}
}
//--> SLIDES

<!-- MENU
function menu(id){
if(document.getElementById(id)){
$("div#"+id+" ul li a").each(function(){
$(this).hover(function(){
$(this).stop().animate({marginTop:"-10px"},"fast");
},function(){
$(this).stop().animate({marginTop:"0"},"fast");
});
});
}
}
//--> MENU
