var news = new Array();
news[0] = "Happy 4th birthday Pixelcode!";
news[1] = "Pixelcode version 4 online!";
news[2] = "Happy 3rd birthday Pixelcode.";
news[3] = "Pixelcode version 4 is underway with a simpler interface and updated tutorials";
function showNews(id)
{
	document.getElementById("newsText").innerHTML = news[id];
}