// JavaScript Document

$(document).ready(function(){
	
	$('#palavra_chave').focus(function(){
		$(this).removeAttr('value');
	});
	
	$('.empreendimento_opcao').mouseover(function(){
		$(this).css('background-color', '#ffffff');
	});
	$('.empreendimento_opcao').mouseout(function() {
		$(this).css('background-color', '#f4f4f4');
	});
	
});


function initBanner(){
	var bannercontainer = document.getElementById("banner");
	bannercontainer.style.display = "block";
	bannercontainer.style.overflow = "hidden";
	bannercontainer.style.height = "232px";
}
initBanner()

function showBanner(){
	document.getElementById("banner").style.height = "500px";
	document.getElementById("banner").style.width = "100%";
}

function hideBanner(){
	document.getElementById("banner").style.height = "232px";
	document.getElementById("banner").style.width = "100%";
}

function fecharBanner(){
	document.getElementById("banner").style.visibility = "hidden";
}