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