

// Author: Kris Purdy
// Date: 17/10/2007
var g_CurrentID = 0;

//======================================================================
$(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.
  g_CurrentID = $(".glosSubNav a:first-child").attr("href");
  assignClick();
});

//======================================================================
function assignClick (a_Event) {
//pre: All //[@class='iabRoll'].
//pst: Assigns a click event with delay to the correct DOM objects.
  $(".glosSubNav a").click(
    function () {
      fadeListOut();
      g_CurrentID = $(this).attr("href");
      setTimeout("fadeListIn()",600);
    }
  );
}

//======================================================================
function fadeListOut () { 
  $(g_CurrentID).fadeOut(600);
}


//======================================================================
function fadeListIn () { 
  $(g_CurrentID).fadeIn(600);
}

