// JQuery 
  //<![CDATA[   
    // When the page is ready
    $(document).ready(function(){
	  // Zebra Tables
	  $('tbody tr:nth-child(odd)').addClass('odd');
	  // rel="external" and PDFs in new window
	  $('a[href$=".pdf"], a[rel="external"]').click(function() {
        window.open($(this).attr('href') );
        return false;
	  });
    });
  //]]>