function GenerateGalleryList() {
	var mi  = new Array();
	var i = 0;
	
	mi[i++] = new MI("home", "index.html");
	mi[i++] = new MI("fabrication &<br>reconstruction", "fab/index.html");
	mi[i++] = new MI("storytelling", "storytelling/index.html");
	mi[i++] = new MI("past works", "pastworks/index.html");
	mi[i++] = new MI("<br>", null);			// a break
	mi[i++] = new MI("statement", "info/statement.html");
	mi[i++] = new MI("resume", "info/resume.html");
	mi[i++] = new MI("reviews", "info/reviews.html");
	mi[i++] = new MI("links", "info/links.html");
	mi[i++] = new MI("contact", "info/contact.html");
	


	return mi;
}

