
function fechar(id){
	$("#"+id).css({ "display":"none" });
}

$(document).ready(function(){
	/********************************************
	EFEITO DE INPUT
	********************************************/
	$("input, textarea, select").focus(
		function () {
      	$(this).css({ "color":"#000" });
		}
	);
	
	$("input, textarea, select").blur(
		function () {
			$(this).css({"color":"#999" });
		}
	);
  $("a.fechar").click(function() {
    $(this).parent().hide("normal")
    return false
  })
});

