jQuery(document).ready(function() {

	jQuery("#conteudo a[name]").html("&nbsp;").addClass("ancora");
	
	// Pop-rss
	
	jQuery(".rss").click(function(e) {
		jQuery("#pop").fadeIn("slow");
		e.preventDefault();
	});
		
	jQuery("a.close").click(function(e) {
		jQuery("#pop").fadeOut("slow");
		e.preventDefault();
	});	
	
	jQuery(".ico_busque").click(function(e) {
		jQuery("#box-busca").fadeIn(400);
		e.preventDefault();
	});	
	
	jQuery(".ico_busque").toggle(
		function () {
			jQuery("#box-busca-inner").slideDown(400);
		},
		function () {
			jQuery("#box-busca-inner").slideUp(400);
		}
	);
	
	jQuery(".ico_mapa").toggle(
		function () {
			jQuery("#box-acesso").fadeIn(400);
		},
		function () {
			jQuery("#box-acesso").fadeOut(400);
		}
	);
	
});
