﻿jQuery.fn.ReplaceDisclaimerText = function()
{
    var textToReplace = "[*]?[ ]?Individual results will vary"

    var replacementText = "* Body-<em>for</em>-LIFE fitness goals vary by person, but through proper diet and resistance training, the Body-<em>for</em>-LIFE program can help you achieve yours.";

    var regex = new RegExp(textToReplace, "gi");
    
    return this.each(function() 
    {
        this.innerHTML = this.innerHTML.replace(regex, replacementText);
    });    
}

$(document).ready(function() {
    $("div#champion").ReplaceDisclaimerText();    
});
