jQuery.noConflict();
jQuery(document).ready(function(){
    jQuery('li.top_tab').hover(
      function() { jQuery('ul', this).css('display', 'block'); },
      function() { jQuery('ul', this).css('display', 'none'); });
      
    jQuery('div.feature_preview').hover(
      function() { jQuery('div.feature', this).css('display', 'block'); },
      function() { jQuery('div.feature', this).css('display', 'none'); });
  });
  
