

function loadImages() {

this[1] = new Image();
this[1].src = "../icons/eyebright.jpg";
this[2] = new Image();
this[2].src = "../icons/eye.jpg";
this[3] = new Image();
this[3].src = "../icons/meicon.jpg";
this[4] = new Image();
this[4].src = "../icons/mebrighticon.jpg";
this[5] = new Image();
this[5].src = "../icons/2001icon.jpg";
this[6] = new Image();
this[6].src = "../icons/2001brighticon.jpg";

}

if (document.images) {
  loadImages();
}

function switchicon(i, j, flag) {
if (document.images) {

	if (j == 0) {
   if (flag == 1)  {
     document.images[i].src = "../icons/2001brighticon.jpg";
  }
  else  {
     document.images[i].src = "../icons/2001icon.jpg"}
 }


else	if (j == 1) {
   if (flag == 1)  {
     document.images[i].src = "../icons/mebrighticon.jpg";
  }
  else  {
     document.images[i].src = "../icons/meicon.jpg"}
 }

else if (j == 2) {
   if (flag == 1)  {
     document.images[i].src = "../icons/eyebright.jpg";
  }
  else  {
     document.images[i].src = "../icons/eye.jpg"}
}

else return

}
}


