

// Author: Kris Purdy
// Date: 29/11/2007

//======================================================================
$(document).ready(function() {
//pre: A HTML page with lists and hidden content.
//pst: A HTML page with fadin lists on click of the anchor link.
  assignJumpTo();
});

//======================================================================
function assignJumpTo () {
//pre: All //[@class='iabRoll'].
//pst: Assigns a click event with delay to the correct DOM objects.
  $("#iQuickLink").change(
    function () {
      location = document.getElementById("iQuickLink").value;
    }
  );
}