6
| <![CDATA[<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-41239097-1');
</script>]]>
|
25
| <![CDATA[<script>
$(function(){
$("ul li.dropdown li.submenu").each(function(){
var el = $('#' + $(this).attr('id') + ' ul:eq(0)');
$(this).hover(function(){
el.show();
$(this).addClass("opcao_ativa");
}, function(){
el.hide();
$(this).removeClass("opcao_ativa");
});
});
$("ul li.dropdown").each(function(){
var el = $('#' + $(this).attr('id') + ' ul:eq(0)');
$(this).hover(function(){
el.show();
$(this).addClass("opcao_ativa");
}, function(){
el.hide();
$(this).removeClass("opcao_ativa");
});
});
});
</script>]]>
|
60
| <![CDATA[<script type="text/javascript">
$(document).ready(function(){
$('div#banner').cycle({fx:'fade',pager:'#rodapeBanner',delay: 3000});
//$('div#banner').cycle({fx:'fade',pager:'#rodapeBanner',delay: 0, timeout: 0});
});
</script>]]>
|
71
| <![CDATA[<script>
if (screen.width == 1024) {
document.getElementById('container_2_floater').style.left = '30%';
} else if (screen.width == 800){
document.getElementById('container_2_floater').style.left = '13%';
} else if (screen.width == 1280){
document.getElementById('container_2_floater').style.left = '50%';
} else {
document.getElementById('container_2_floater').style.left = '65%';
}
</script>]]>
|