  $(document).ready(function(){  
  var j = jQuery.noConflict();
  
  j('#more').hover(function (){j(this).css({'color' : '#FF4E00', 'cursor' : 'pointer'})}, function (){j(this).css({'color' : '#A3A3A3', 'cursor' : 'text'})} );
     j("#more").click(function () { 
      j("#more_box").slideToggle(); 
    });
  
 });

  

