// Copyright 2010 Daniel Östlund
//
// Use of this script is limited, ask nicely before using it...

$(document).ready(function() {
	$.ajax({
		type: 'GET',
		url: '/ajax.php',
		contentType: 'json',
		success: function(data) { $('.news').append(data); }
	});
});
