﻿$(function() {
  $(".cHoverText").live('mouseover', function() {
    ShowToolTip(strDomain + "/toolTips/featuresToolTip.aspx?hoverid=" + $(this).attr('hoverId'), $(this).attr('id'), null, null);
  });
  $(".cHoverText").live('mouseout', function() {
    HideToolTip();
  }
     );
}); 
