
var carbofor = function () {
	
	this.__cached = false;
	this.__navigations = [
		"home", "home-on",
		"about", "about-on", 
		"publications", "publications-on",
		"projects", "projects-on",
		"psp", "psp-on",
		"events", "events-on",
		"tools", "tools-on",
		"links", "links-on",
		"red", "red-on"

	];
	this.__host = "http://" + document.location.host;
	this.__imgdir = "/carbofor/images/navigations/";
	
	this.imageCacher = function () {
		var img = this.__navigations;
		for(i=0;i<img.length;i++) {
			pic = new Image();
			pic.src = this.__host + this.__imgdir + img[i] + ".gif";
			//document.write(pic.src + "<br/>");
		}
	}
	
}