

// order is: Whatyou should know |  how to help  | events | Information & Resources | Doing our part


var a = new Array(6)
var b = new Array(6)
var c = new Array(6)

a[0] = new Image(51,16)
b[0] = new Image(51,16)
c[0] = new Image(51,16)

a[0].src = "images/b_home_off.gif"
b[0].src = "images/b_home_over.gif"
c[0].src = "images/b_home_on.gif"

a[1] = new Image(187,16)
b[1] = new Image(187,16)
c[1] = new Image(187,16)

a[1].src = "images/b_youshouldknow_off.gif"
b[1].src = "images/b_youshouldknow_over.gif"
c[1].src = "images/b_youshouldknow_on.gif"

a[2] = new Image(110,16)
b[2] = new Image(110,16)
c[2] = new Image(110,16)

a[2].src = "images/b_howtohelp_off.gif"
b[2].src = "images/b_howtohelp_over.gif"
c[2].src = "images/b_howtohelp_on.gif"

a[3] = new Image(69,16)
b[3] = new Image(69,16)
c[3] = new Image(69,16)

a[3].src = "images/b_events_off.gif"
b[3].src = "images/b_events_over.gif"
c[3].src = "images/b_events_on.gif"


a[4] = new Image(190,16)
b[4] = new Image(190,16)
c[4] = new Image(190,16)

a[4].src = "images/b_informationresources_off.gif"
b[4].src = "images/b_informationresources_over.gif"
c[4].src = "images/b_informationresources_on.gif"

a[5] = new Image(117,16)
b[5] = new Image(117,16)
c[5] = new Image(117,16)

a[5].src = "images/b_doingourpart_off.gif"
b[5].src = "images/b_doingourpart_over.gif"
c[5].src = "images/b_doingourpart_on.gif"
	
			
function imgOver(imgName,idx) {
	document[imgName].src = b[idx].src
}

function imgOff(imgName,idx) {
	document[imgName].src =a[idx].src;
}

function imgOn(imgName,idx) {
	document[imgName].src = c[idx].src;
}