<!-- Big Picture
function create() {
this.width = ''
this.height = ''
this.src = ''
this.href = ''
this.border = ''}
goals = new Array()
for(var i=1; i<=5; i++) { goals[i] = new create() }

//Agrisystems
goals[1].width = "270"
goals[1].height = "267"
goals[1].src = "../images/aghorses.jpg"
goals[1].href = "MM_openBrWindow('agrisystems.htm','','scrollbars=yes,width=350,height=500')"
goals[1].border = "0"

//Youth
goals[2].width = "270"
goals[2].height = "267"
goals[2].src = "../images/youthdig.jpg"
goals[2].href = "MM_openBrWindow('youth.htm','','scrollbars=yes,width=350,height=500')"
goals[2].border = "0"

//Food and Nutrition
goals[3].width = "270"
goals[3].height = "267"
goals[3].src = "../images/fooddinner.jpg"
goals[3].href = "MM_openBrWindow('food.htm','','scrollbars=yes,width=350,height=500')"
goals[3].border = "0"

//Environmental Conservation
goals[4].width = "270"
goals[4].height = "267"
goals[4].src = "../images/environbeach.jpg"
goals[4].href = "MM_openBrWindow('environment.htm','','scrollbars=yes,width=350,height=500')"
goals[4].border = "0"

//Economic Development
goals[5].width = "270"
goals[5].height = "267"
goals[5].src = "../images/econtown.jpg"
goals[5].href = "MM_openBrWindow('economic.htm','','scrollbars=yes,width=350,height=500')"
goals[5].border = "0"

var n = Math.round(5*Math.random()+1);
if(n==0) {
  n=1 }
if(n>5) {
  n=5 }
var image = goals[n]
var goal = ""
goal += '<a href="#" onClick="' + image.href + '"> \n'
goal += '<img src="' + image.src + '" width=' + image.width
goal += '\n height=' + image.height + ' border=' + image.border
goal += '\n ></a>'
// End Big Picture Rotation-->
