// To add a new project: 
//
// Add entries to test_test and from_test in the same position.
// If the array is incremented, change the value in Math.floor(3*Math.random()) to be
// the same as the number of elements in the array (including 0).

var proj_text = new Array ();
proj_text[0] = "<a href=\"website-portfolio.htm\" id=\"NewMRB\">MRB Minibus Hire - Launched in June 2009</a>";
proj_text[1] = "<a href=\"website-portfolio.htm\" id=\"NewChrisLittle\">Chris Little Discos - Launched in May 2009</a>";
proj_text[2] = "<a href=\"website-portfolio.htm\" id=\"NewChrisWright\">Chris-Wright.com - Launched in June 2009</a>";
proj_text[3] = "<a href=\"website-portfolio.htm\" id=\"NewPrism\">Prism Consulting - Launched in April 2009</a>";
proj_text[4] = "<a href=\"website-portfolio.htm\" id=\"NewLucia\">Lucia Consultancy - Launched in October 2009</a>";
proj_text[5] = "<a href=\"website-portfolio.htm\" id=\"NewRedHotSolar\">The Red Hot Solar Company - Launched in November 2009</a>";
proj_text[6] = "<a href=\"website-portfolio.htm\" id=\"NewHigha\">Higha Efficiency- Launched in November 2009</a>";
proj_text[7] = "<a href=\"website-portfolio.htm\" id=\"NewCupcake\">The Cupcake Box- Launched in January 2010</a>";

function gen_project() {

	var i = Math.floor(8*Math.random());

	return proj_text[i];
		
}
