// 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');
	});
	
});