var imageName;

// Preload the images.
if (document.images) {
 arrow2_off            = new Image();
 arrow2_off.src        = "http://celica-gts.com/images/arrow2.gif";
 arrow2_on             = new Image();
 arrow2_on.src         = "http://celica-gts.com/images/arrow2_on.gif";
}

// Image rollover functions.
function pointOn2(imageName) {
 if (document.images)
  document[imageName].src = arrow2_on.src;
}

function pointOff2(imageName) {
 if (document.images)
  document[imageName].src = arrow2_off.src;
}

// Cell rollover functions
function ron(obj) {
 obj.style.backgroundColor='#990000';
}

function roff(obj) {
 obj.style.backgroundColor='';
}