function get_random()
{
    var ranNum= Math.round(Math.random()*4);
    return ranNum;
}

var whichFact=get_random();

var fact=new Array(12)
     fact[0]="The Capital Area Food Bank nourishes more than 48,000 hungry Central Texans in any given week. ";
     fact[1]="95% of CAFB Partner Agencies say they could no longer serve their clients if the Food Bank shut down tomorrow. ";
     fact[2]="41% of those nourished by the Capital Area Food Bank is a child.";   
	 fact[3]="More than 1/3 of CAFB's older clients go extended periods without food.";
	 fact[4]="56% of Partner Agency pantries and 4% of soup kitchens are entirely volunteer run with no paid staff.";
	 fact[5]="1 in 5 families we serve experience the physical pain of hunger.";
	 fact[6]="Almost half of our clients have at least one working adult at home.";
	 fact[7]="Almost half of the families we serve have to choose between buying food and paying utilities.";
	 fact[8]="82% of our clients are not homeless.";

document.getElementById("hungerFact").innerHTML = "<div class=callouttext>" +fact[whichFact]+ "</div>";
		
	
	document.getElementById("hungerPhoto").innerHTML = "<img src=" + photo[whichPhoto] + " border=0>";	
		
