function get_random()
{
    var ranNum= Math.round(Math.random()*4);
    return ranNum;
}

var whichFact=get_random();

var fact=new Array(12)
     fact[0]="Nearly one in five adults and one in four children in Texas are hungry.";
     fact[1]="82% of Food Bank Partner Agency recipients are food insecure. 49% of recipients experience outright hunger.";
     fact[2]="The annual income needed for a Travis County family of four to \"afford\" to live in the Austin area is $44,000. That's 233% above the Federal poverty level.";   
     fact[3]="While the child poverty rate in Texas is 23.2%, for the CAFB service area, 35% of the household members receiving food are children.";
     fact[4]="Approximately 200,000, or 20%, of Travis County residents are classified as \"working poor\" by the Texas Department of Human Services. ";
	 fact[5]="Of Food Bank Partner Agencies, 71% of pantries and 37% of the soup kitchens are run by faith-based agencies.";
	 fact[6]="59% of Partner Agency pantries and 12% of soup kitchens are entirely volunteer run with no paid staff.";
	 fact[7]="CAFB is by far the most important source of food for its Partner Agencies, accounting for 76% of food for pantries and 38% for soup kitchens.";
	 fact[8]="Austin continues to have the highest cost of living in the State of Texas, exceeding housing costs in Dallas, Houston, San Antonio and Fort Worth.";
	 fact[9]="34% of Food Bank recipients report having to choose between buying medicine or medical service and buying food.";
	 fact[10]="Approximately 175,000 people receive food through CAFB's efforts.";
	 fact[11]="76% of households receiving assistance from CAFB Partner Agencies report incomes below the federal poverty level.";

document.getElementById("hungerFact").innerHTML = "<div class=callouttext>" +fact[whichFact]+ "</div>";




	var whichPhoto=get_random();
	var photo=new Array(12)
		photo[0]="/images/subnav_photo/photo_sub_1.jpg";
		photo[1]="/images/subnav_photo/photo_sub_2.jpg";
		photo[2]="/images/subnav_photo/photo_sub_3.jpg";
		photo[3]="/images/subnav_photo/photo_sub_4.jpg";
		photo[4]="/images/subnav_photo/photo_sub_5.jpg";
		photo[5]="/images/subnav_photo/photo_sub_6.jpg";
		photo[6]="/images/subnav_photo/photo_sub_7.jpg";
		photo[7]="/images/subnav_photo/photo_sub_8.jpg";
		photo[8]="/images/subnav_photo/photo_sub_9.jpg";
		photo[9]="/images/subnav_photo/photo_sub_10.jpg";
		photo[10]="/images/subnav_photo/photo_sub_11.jpg";
		photo[11]="/images/subnav_photo/photo_sub_12.jpg";
	
	document.getElementById("hungerPhoto").innerHTML = "<img src="../wrprs/This_Wrapper_is_for_Sub_Navigation_files/%20+%20photo%5BwhichPhoto%5D%20+%20" border=0>";	
		