
$(document).ready(
  function(){
    $("#promLogo1").hover(
      function(){
      $("#promText1").fadeIn("slow");
      },
      function(){
      $("#promText1").fadeOut("slow");
      }
    );
        
    $("#promLogo2").hover(
      function(){
      $("#promText2").fadeIn("slow");
      },
      function(){
      $("#promText2").fadeOut("slow");
      }
    );
    
    $("#smartLogo").hover(
      function(){
      $("#smartText").fadeIn("slow");
      },
      function(){
      $("#smartText").fadeOut("slow");
      }
    );
  }
);

