$(document).ready(function() {
 // hides the handoutbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#gethandoutBox').hide();
   // hides the gethandoutBox on clicking the noted link
  $('a#gethandout-hide').click(function() {
	$('#gethandoutBox').hide();
	return false;
  });
 // toggles the handoutbox on clicking the noted link
  $('a#gethandout-toggle').click(function() {
	$('#gethandoutBox').toggle(0);
	return false;
  });


//Creates Zabra lines on index.jsp page 
//and lits rows on hover

  $('ul.rowData:odd').addClass('even');

 $('ul.rowData').hover(function() {
     $(this).addClass("litRow");
   },function(){
     $(this).removeClass("litRow");
   });


});