var imageSrc;

function loadLrgImg(){
	var p = 3; //number of images to rotate
	var whichImage = Math.round(Math.random()*(p-1));
	imageSrc = "images/" + whichImage + ".jpg";
	document.getElementById('home_image').src = imageSrc;
	
}

var quotes = new Array();
quotes[0] = "&ldquo;. . .your success will mean a reduction in suffering for millions who live in extreme poverty today.&rdquo; -   Rustom Masalawala - Managing Director, Kaizen Craft LLC";
quotes[1] = "&ldquo;Of all the players in the world of malaria right now, and there are some very exceptional ones, . . . General Resonance is right up top, . . . your approach is smart, . . . and you really get it.&rdquo;  -  Lance Laifer,  Founder, Hedge Funds vs. Malaria. ";

function randomQuote(){
	var n = 2; //number of quotes to rotate
	var i = Math.round(Math.random()*(n-1));
	document.getElementById('myQuote').innerHTML = quotes[i];
}