var init = function () {
	console.log('Captain, we are ready to go.');
	var txtFile = new XMLHttpRequest();
	txtFile.open("GET","posts/2011/11/1.txt");
	txtFile.send(false);
 
	var allText = txtFile.responseText;
};
