﻿function loadNews(){
	$.getJSON(
		"news.json",
		function(data){
			$.each(
				data.newsitems,
				function(it,item){
					$("<p/>")
						.text(item.content)
						.prepend(
							$("<br/>")
						)
						.prepend(
							$("<b/>")
								.text(item.date + " - " + item.location)
						)
						.append(
							$("<br/>")
						)
						.append(
							$("<a/>")
								.attr({
									href: item.link
								})
								.text("Tovább...")
						)
						.appendTo("#newscontainer")
				}
			)
		}
	);
}

