// JavaScript Document

$(document).ready(setInformation);

function setInformation() {
	
	jQuery.get("./information/news.txt", null, setNews);
	jQuery.get("./staffblog/news.txt", null, setBlog);
	jQuery.get("./mailmagazine/news.txt", null, setMagazine);
	
}
function setNews(data) {
	$("#newsBox > .container").html(data);
}
function setBlog(data) {
	$("#blogBox > .container").html(data);
}
function setMagazine(data) {
	$("#mailBox > .container").html(data);
}


