var img = new Array();

img[0] = new Image(51, 22)
img[0].src = "images/men0_on.png"
img[0].org = "images/men0_off.png"
img[1] = new Image(59, 22)
img[1].src = "images/men1_on.png"
img[1].org = "images/men1_off.png"
img[2] = new Image(73, 22)
img[2].src = "images/men2_on.png"
img[2].org = "images/men2_off.png"
img[3] = new Image(49, 22)
img[3].src = "images/men3_on.png"
img[3].org = "images/men3_off.png"
img[4] = new Image(49, 22)
img[4].src = "images/men4_on.png"
img[4].org = "images/men4_off.png"
img[5] = new Image(87, 22)
img[5].src = "images/men5_on.png"
img[5].org = "images/men5_off.png"
img[6] = new Image(95,22)
img[6].src = "images/men6_on.png"
img[6].org = "images/men6_off.png"

function lightUp(pix_name,pix_num)
{
  document.images[pix_name].src=img[pix_num].src;
}

function dimDown(pix_name,pix_num)
{
  document.images[pix_name].src=img[pix_num].org
}
