$(document).ready(function () {
	$("#contentright").html("<img src='/css/images/loader.gif' alt='' />");
	$.ajax({
		url: "/rssnieuws.php",
		cache: false,
		success: function(html){
			$("#contentright").hide().html(html).fadeIn("slow");
			$("a.new-window").click(function(){
				window.open(this.href);
				return false;
			});
		}
	});
});
