function showTipComments(id)
{
          jQuery('#tipCommentsShowLink' + id).fadeOut("fast", function () {
	       jQuery('#tipComments' + id).css('display', 'block');
	       jQuery('#tipComments' + id).slideDown("slow", function () {
     	            matchHeights();
               });
     });

}



function hideTipComments(id)
{
     jQuery('#tipComments' + id).slideUp("slow", function () {
          matchHeights();
     });
     jQuery('#tipCommentsShowLink' + id).fadeIn("fast");
     
//     jQuery('#tipComments' + id).css('display', 'none');
}
