jQuery.noConflict();
jQuery(document).ready(function(){
  jQuery("#content ul li:first-child").addClass("first");
  jQuery("#content ul li:last-child").addClass("last");
  jQuery("#content ol li:first-child").addClass("first");
  jQuery("#content ol li:last-child").addClass("last");
  jQuery("tr:odd").addClass("odd");
});;

