function reload_comments(offset){
	jQuery.ajax({
		type: 'post',
		data: 'ajax=comments&offset='+offset,
		url: '/psgfans/',
		success: function(data){
			jQuery('#latest-comments').html(data);
		}
	})
}
function reload_news(offset){
	jQuery.ajax({
		type: 'post',
		data: 'ajax=news&offset='+offset,
		url: '/psgfans/',
		success: function(data){
			jQuery('#more-news').html(data);
		}
	})
}