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