<script>
	$.getJSON("http://wellington.gen.nz/transport+consultation/json", function(data) {
        	$.each(data.newsitems, function(i, item) {
            		$("<li><a href=\"" + item.url + "\">" + item.name + "</a><br/>" + item.date + '<br/>' + item.description + "</li>").appendTo("#newsitems");
            		if ( i == 2 ) return false;
		}
)};
</script>

