function get_random()
{
    var ranNum= Math.round(Math.random()*2);
    return ranNum;
}

	var whichPhoto=get_random();
	var photo=new Array(3)
		photo[0]="http://www.austinfoodbank.org/images/subnav/samplepic.jpg";
		photo[1]="http://www.austinfoodbank.org/images/subnav/samplepic2.jpg";
		photo[2]="http://www.austinfoodbank.org//images/subnav/samplepic3.jpg";

	
	document.getElementById("hungerPhoto").innerHTML = "<img src=" + photo[whichPhoto] + " border=0>";	
		