	$(document).ready(function() {
		$('.map').maphilight();
      });

    $(document).ready(function() {
		$('table#alumni tbody tr:odd').addClass('odd');
		$('table#alumni tbody tr:even').addClass('even');

      });

// auto page contents
    $(document).ready(function() {
        if ( $('.contentsEnabled h2').length > 1) {
          $('<div id="tableOfContents"></div>')
            .prepend('<h3>Page Contents</h3>')
            .append('<div style="display:none; clear:left;"></div>')
            .prependTo('#pageContent p:first'); 
			
		  $('#pageContent h2').attr("id", function (arr) {
          return "contentHeading" + arr[0];
        	}).wrapInner('<a></a>').before('<p class="topOfPage"><a href="#topOfPage"  title="Top of Page">Top of the Page</a></p>').each(function(index) {
            var $this = $(this);
            var thisId = this.id;
            $this
              .clone()
              .find('a')
                .attr({
                  'title': 'jump to ' + $this.text(),
                  'href': '#' + thisId
                })
              .end()
              .attr('id', 'pc-' + index)
              .appendTo('#tableOfContents div');
          });
           
		   $('.topOfPage:first').remove();
		   
          $('#tableOfContents h3').click(function() {
            $(this).toggleClass('arrow-down')
              .next().slideToggle('fast');
          });
        }
      });



