newsblock_info_index = 0;
									 
newsblock_update = function() {
	// Update the news with a slick fade effect
	$(".newsblock").fadeOut(500, function(){
		cur_info = newsblock_info[newsblock_info_index];
		$(".newsblock").html("<img src=\"/files/newsblock/"+cur_info.imghash+".png\" />"+
														"<strong>"+cur_info.title+"</strong>"+
														"<p>"+cur_info.text+"</p>").fadeIn(500);
		
		// If we've passed the end, repeat.
		if(++newsblock_info_index >= newsblock_info.length) newsblock_info_index = 0;
	});
};

$(document).ready(function(){
	// Load the first info in, w/o any effect
	cur_info = newsblock_info[newsblock_info_index];
	$(".newsblock").html("<img src=\"/files/newsblock/"+cur_info.imghash+".png\" />"+
														"<strong>"+cur_info.title+"</strong>"+
														"<p>"+cur_info.text+"</p>");
	if(++newsblock_info_index >= newsblock_info.length) newsblock_info_index = 0;
	
	// Cause an update every 5000 ms
	setInterval(newsblock_update, 5000);
});
