jQuery.noConflict();

jQuery(document).ready( function() {

      jQuery("ul.sf-menu").superfish(); 

      jQuery("table.contenttable").each(function(){
        jQuery("tr:odd", this).not(".even").addClass("odd");
        jQuery("tr:even", this).not(".odd").addClass("even");
      });
});
