jQuery(document).ready(function($) {
       
		// show and hide the newsletter form signup box
		jQuery("#subscribe-button").click(function(){
			$("#newsletter-form").toggle("fast");
			$(this).text($(this).text() == 'Go' ? 'Fechar' : 'Go');
		});

});


