   
  $(document).ready(function(){
    $(".tanBackgroundBlueText").hover(function () {
      $(this).removeClass("tanBackgroundBlueText");
      $(this).addClass("tanBackgroundBlueTextHover");    
    }, function () {
      $(this).removeClass("tanBackgroundBlueTextHover");
      $(this).addClass("tanBackgroundBlueText");
    });
    
    
    $(".whiteBackgroundRedText").hover(function () {
      $(this).removeClass("whiteBackgroundRedText");
      $(this).addClass("whiteBackgroundRedTextHover");      
    }, function () {
      $(this).removeClass("whiteBackgroundRedTextHover");
      $(this).addClass("whiteBackgroundRedText");
    });
    
    $(".whiteBackgroundBlueText").hover(function () {
      $(this).removeClass("whiteBackgroundBlueText");
      $(this).addClass("whiteBackgroundBlueTextHover");      
    }, function () {
      $(this).removeClass("whiteBackgroundBlueTextHover");
      $(this).addClass("whiteBackgroundBlueText");
    });
    
  });