	jQuery.noConflict();
	jQuery(document).ready(function(){
		jQuery.getJSON("/wp-content/themes/wpd/changes-wpde-json.php", function(data) {
			jQuery(".ajax-load").fadeOut(2000).remove();

			jQuery.each(data, function(i,item){
				var date = new Date(item.updated * 1000);
				jQuery(".rightside-box").append("<br />&nbsp;&nbsp;" + date.getHours() + ":" + date.getMinutes() + "&nbsp;&nbsp;<a href=\"" + item.url + "\" title=\"" + item.name + "\" rel=\"nofollow\">" + item.name + "</a><a href=\"http://wordblog.de/" + item.id + "\" rel=\"nofollow\"><img src=\"/wp-content/themes/wpd/images/bookmark1.gif\" alt=\"Info\"></a><a href=\"http://wordblog.de/report/" + item.id + "\" rel=\"nofollow\"><img src=\"/wp-content/themes/wpd/images/bookmark2.gif\" alt=\"Spam\"></a>");
			});
		});
	});
