<!--

var arrowTimer = 0;
var arrowDelay = 150;

function arrowOn(on, off){

  var arrowOnNode = document.getElementById("arrow" + on);
  arrowOnNode.innerHTML = "&#187;";
    
  if (on != off) {

    clearTimeout(arrowTimer);

    var arrowOffNode = document.getElementById("arrow" + off);
    arrowOffNode.innerHTML = "";
  }

}

function arrowOff(on, off){

  if (on != off) {
  
    var arrowOffNode = document.getElementById("arrow" + off);
    arrowOffNode.innerHTML = "";

    // Build the Timed Function Call
    var call = "resetArrow(\'" + on + "\')";
		
    // Set Timer for the reseting of images
    arrowTimer = setTimeout(call,arrowDelay);
  }
}

function resetArrow(on){

  var arrowOnNode = document.getElementById("arrow" + on);
  
  arrowOnNode.innerHTML = "&#187;";

}

// -->
