
$(document).ready(function(){
	

	$('#newsSignup dt').toggle(function() {
	  $('#newsSignup').animate({"height": "190px"}, 400);
	}, function() {
	  $('#newsSignup').animate({"height": "40px"}, 400);
	});
	

});

