//Função que verifica a resolução do cliente e apresenta ou oculta os banners flutuantes
function resolucao_8(){
	if(screen.width == 800){
		document.getElementById('bannerFlut').style.display ='none'
	}   
}
//Funções responsáveis pela flutuação dos conteudos
var y1 = 2;// change the # on the left to adjuct the Y co-ordinate
(document.getElementById) ? dom = true : dom = false;

function hideIt_8() {
  if (dom) {document.getElementById("bannerFlut").style.visibility='hidden';}
  if (document.layers) {document.layers["bannerFlut"].visibility='hide';} }

function showIt_8() {
  if (dom) {document.getElementById("bannerFlut").style.visibility='visible';}
  if (document.layers) {document.layers["bannerFlut"].visibility='show';} }

function placeIt_8() {
  if (dom && !document.all) {document.getElementById("bannerFlut").style.top = window.pageYOffset + (window.innerHeight - (window.innerHeight-y1))}
  if (document.layers) {document.layers["bannerFlut"].top = window.pageYOffset + (window.innerHeight - (window.innerHeight-y1))}
  if (document.all) {document.all["bannerFlut"].style.top = document.body.scrollTop + (document.body.clientHeight - (document.body.clientHeight-y1));}
  window.setTimeout("placeIt_8()", 10); }
