
Function.NoOp = function(a) { return (a); }
if (!window.BtvOverlay) window.BtvOverlay = {};
(function(){
if (!BtvOverlay.Util) BtvOverlay.Util = {};
BtvOverlay.Util.ArrayToHash = function(a, fnc)
{
fnc = fnc || Function.NoOp;
var ht = {};
for (var i = 0; a && (i < a.length); i++) ht[fnc(a[i])] = true;
return (ht);
}
BtvOverlay.Util.ToLowerCase = function(s)
{
return(s.toLowerCase());
}
BtvOverlay.Util.ToUpperCase = function(s)
{
return(s.toUpperCase());
}
var re = new RegExp("[\\[\\]{}\\\\|().*+?\^\$]", "g");
BtvOverlay.Util.RegExpEscape = function(s)
{
return s.replace(re, "\\$&");
}
})();
BtvOverlay.Dom = new function()
{
var oThis = this;
oThis.Traverse = function(oNode, fnc, fncStop)
{
function Loop()
{
while (aNodesToSearch.length > 0)
{
if (iDelayIterations++ == 100)
{
iDelayIterations = 0;
window.setTimeout(Loop, 10);
fncStop(true);
return;
}
else
{
oNode = aNodesToSearch[aNodesToSearch.length-1];
if (oNode == aParentNodes[aParentNodes.length-1])
{
aParentNodes.pop();
aNodesToSearch.pop();
fnc(oNode, false);
}
else
{
if (!fnc(oNode, true) && oNode.childNodes.length)
{
aParentNodes.push(oNode);
for (var i = oNode.childNodes.length - 1; i >= 0; i--)
{
aNodesToSearch.push(oNode.childNodes[i]);
}
}
else
{
aNodesToSearch.pop();
fnc(oNode, false)
}
}
}
}
fncStop(false);
}
var iDelayIterations = 0;
var aNodesToSearch = oNode ? [oNode] : [];
var aParentNodes = [];
Loop();
}
oThis.FindNodes = function(oNode, aNodeTypes, oRules, fncCallback)
{
function Nodify(oNode, bln)
{
if (bln)
{
var iType = oNode.nodeType;
if (iInclude && htNodeTypes[iType]) aTextNodes.push(oNode);
if (iType != 1) return(true);
var id = oNode.getAttribute("id");
if (lookup[0] && lookup[0].ids[id]) return(true);
var strTagName = oNode.tagName;
if (lookup[0] && lookup[0].tags[strTagName]) return(true);
var strClasses = oNode.className;
if (lookup[0] && lookup[0].classes[strClasses]) return(true);
if (lookup[1] && (lookup[1].tags[strTagName] || lookup[1].ids[id] || lookup[1].classes[strClasses]))
{
aIncludeNodes.push(oNode);
iInclude++;
}
return(false);
}
else
{
if (aIncludeNodes.length && (aIncludeNodes[aIncludeNodes.length-1] == oNode))
{
aIncludeNodes.pop();
iInclude--;
}
}
}
function Stop(bln)
{
fncCallback(aTextNodes, bln);
aTextNodes = [];
}
function CreateLookup()
{
var lookup = [];
if (oRules.oExclude) lookup[0] = {
tags: ath(oRules.oExclude.aTags, BtvOverlay.Util.ToUpperCase)
,ids: ath(oRules.oExclude.aIds)
,classes: ath(oRules.oExclude.aClasses)
};
if (oRules.oInclude) lookup[1] = {
tags: ath(oRules.oInclude.aTags, BtvOverlay.Util.ToUpperCase)
,ids: ath(oRules.oInclude.aIds)
,classes: ath(oRules.oInclude.aClasses)
};
return(lookup);
}
oRules.aNodeTypes = aNodeTypes;
var iInclude = oRules.oInclude ? 0 : 1;
var ath = BtvOverlay.Util.ArrayToHash;
var htNodeTypes = BtvOverlay.Util.ArrayToHash(oRules.aNodeTypes);
var lookup = CreateLookup();
var aIncludeNodes = [];
var aTextNodes = [];
BtvOverlay.Dom.Traverse(oNode, Nodify, Stop);
}
};
BtvOverlay.Dom.Tokenizer = new function()
{
var oThis = this;
oThis.Run = function(oNode, astrKeywords, htTermsData, oRules, strTermColor, fnc)
{
function RunSet(aNodes, astrKeywords, fnc)
{
function BuildReplacement(oNode, strText, aMatches)
{
function InAnchor()
{
var o = oNode;
while (o.parentNode)
{
if (o.parentNode.tagName && (o.parentNode.tagName.toLowerCase() == "a")) return(true);
o = o.parentNode
}
return(false);
}
function Adorn(str)
{
var span = document.createElement("foo");
if (!span.addEventListener) span.style.position = "relative";
span.style.display = "inline";
span.style.textDecoration = "underline";
span.style.borderBottom = "solid 1px " + strTermColor;
if (!span.addEventListener) span.style.top = "1px";
span.style.cursor = "pointer";
span.style.zoom = 1;
fnc(span, str);
span.innerHTML = str;
return (span);
}
function CheckSpan(span)
{
var str = span.innerHTML;
span.innerHTML = '&nbsp;';
var iOneLineHeight = span.offsetHeight;
span.innerHTML = str;
var iEntireHeight = span.offsetHeight;
span._blnWrap = (iEntireHeight > (1.5 * iOneLineHeight));
}
function CreateIcon(str)
{
var img = document.createElement('img');
img.src = '/images/overlay-action.png';
img.style.borderWidth = '0px';
img.style.display = 'inline';
//img.style.verticalAlign = 'text-bottom';
img.style.padding = '1px 0px 0px 4px';
img.style.margin = '0px';
img.style.cursor = "pointer";
img.style.zoom = 1;
img.__blnOverlay = true;
fnc(img, str);
return(img);
}
if (!oNode.parentNode) return;
for (var i=0; i < oNode.parentNode.childNodes.length; i++)
{
if (oNode.parentNode.childNodes[i].__blnOverlay) return;
}
var iStart = 0;
for (var i = 0; i < aMatches.length; i++)
{
var strMatch = aMatches[i][0];
var strTerm = aMatches[i][1];
if (true)
{
var iPlainTextLength = aMatches[i].index + strMatch.indexOf(strTerm);
var textNode = document.createTextNode(strText.substring(iStart, iPlainTextLength));
oNode.parentNode.insertBefore(textNode, oNode);
var span = Adorn(strTerm);
oNode.parentNode.insertBefore(span, oNode);
CheckSpan(span);
iStart = iPlainTextLength + strTerm.length;
}
else
{
var iPlainTextLength = aMatches[i].index + strMatch.indexOf(strTerm) + strTerm.length;
var textNode = document.createTextNode(strText.substring(iStart, iPlainTextLength));
oNode.parentNode.insertBefore(textNode, oNode);
oNode.parentNode.insertBefore(CreateIcon(strTerm), oNode);
iStart = iPlainTextLength;
}
}
var textNode = document.createTextNode(strText.substring(iStart));
oNode.parentNode.insertBefore(textNode, oNode);
oNode.parentNode.removeChild(oNode);
}
function SortKeywords(s1, s2)
{
var i1 = s1.length;
var i2 = s2.length;
return((i1 < i2) ? 1 : ((i1 > i2) ? -1 : 0));
}
astrKeywords.sort(SortKeywords);
var aReKeywords = [];
for (var i=0; i < astrKeywords.length; i++)
{
aReKeywords.push(BtvOverlay.Util.RegExpEscape(astrKeywords[i]));
}
var reSearch = new RegExp("(?:^|[^0-9A-Za-z])(" + aReKeywords.join('|') + ")([^0-9A-Za-z]|$)", "g");
var aMatch;
var aMatches;
var strTerm;
for (var i = 0; i < aNodes.length; i++)
{
aMatches = null;
var str = aNodes[i].nodeValue;
while ((aMatch = reSearch.exec(str)) != null)
{
aMatches = aMatches || [];
strTerm = aMatch[1];
if (!htTermMatches[strTerm]) htTermMatches[strTerm] = 0;
if (!htTermsData[strTerm] || (htTermsData[strTerm].MaxCount <= 0) || (htTermMatches[strTerm] < htTermsData[strTerm].MaxCount))
{
htTermMatches[strTerm]++;
aMatches.push(aMatch);
}
if (aMatch[2]) reSearch.lastIndex -= 1;
}
if (aMatches) BuildReplacement(aNodes[i], str, aMatches);
}
}
function HaveNodes(aTextNodes, bln)
{
RunSet(aTextNodes, astrKeywords, fnc);
if (!bln)
{
var dtEnd = (new Date()).valueOf();
//alert(dtEnd - dtStart);
}
}
var dtStart = (new Date()).valueOf();
if (!oRules.oExclude) oRules.oExclude = {};
if (!oRules.oExclude.aTags) oRules.oExclude.aTags = [];
if (!oRules.oExclude.aClasses) oRules.oExclude.aClasses = [];
oRules.oExclude.aTags.push("script");
oRules.oExclude.aTags.push("foo");
oRules.oExclude.aTags.push("textarea");
oRules.oExclude.aClasses.push("nooverlay", "btv_orange_button", "article_page_title");
var htTermMatches = {};
var aTextNodes = BtvOverlay.Dom.FindNodes(oNode, [3], oRules, HaveNodes);
}
};
(function()
{
var oOverlayData = {"data":[{"Url":"analeigh-antm11.aspx","PhotoCount":13,"Rank":1413,"ImageSrc":"/articles/profiles/analeigh.jpg","Term":"Analeigh Tipton","ID":30000107,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kahlen-rondot.aspx","PhotoCount":7,"Rank":1249,"ImageSrc":"/articles/americas-next-top-model/profile/Kahlen-Rondot.jpg","Term":"Kahlen Rondot","ID":2185,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"yaya-da-costa.aspx","PhotoCount":7,"Rank":1733,"ImageSrc":"/articles/americas-next-top-model/profile/Yaya-Da-Costa.jpg","Term":"Yaya Da Costa","ID":4757,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"mila-bosonowa.aspx","PhotoCount":3,"Rank":1984,"ImageSrc":"/articles/americas-next-top-model/profile/Mila-Bosonowa.jpg","Term":"Mila Bosonowa","ID":10000192,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"mollie-sue-steenisgondi.aspx","PhotoCount":8,"Rank":1836,"ImageSrc":"/articles/americas-next-top-model/profile/Mollie-Sue-Steenis-Gondi.jpg","Term":"Mollie Sue Steenis-Gondi","ID":2210,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"mercedes-scelbashorte.aspx","PhotoCount":7,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Mercedes-Scelba-Shorte.jpg","Term":"Mercedes Scelba-Shorte","ID":4858,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"samantha-antm11.aspx","PhotoCount":17,"Rank":3232,"ImageSrc":"/articles/profiles/samantha.jpg","Term":"Samantha Potter","ID":30000115,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"brooke.aspx","PhotoCount":28,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Brooke-Miller.jpg","Term":"Brooke Miller","ID":410,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"anya.aspx","PhotoCount":21,"Rank":1028,"ImageSrc":"/articles/americas-next-top-model/profile/Anya-Kop.jpg","Term":"Anya Kop","ID":15764,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"brittany-brower.aspx","PhotoCount":4,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Brittany-Brower.jpg","Term":"Brittany Brower","ID":2175,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"shandi-sullivan.aspx","PhotoCount":8,"Rank":2080,"ImageSrc":"/articles/americas-next-top-model/profile/Shandi-Sullivan.jpg","Term":"Shandi Sullivan","ID":4857,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"renee-alway.aspx","PhotoCount":12,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Renee-Alway.jpg","Term":"Renee Alway","ID":10000249,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"celia-antm12.aspx","PhotoCount":47,"Rank":2997,"ImageSrc":"/usrimages/usr-1/-1_ed8c4d64-af79-4923-a359-47e1ff9304e3-a-1-853f4a82-1a28-41fe-b007-87ddc0ea4d3f-celia.jpg","Term":"Celia Ammerman","ID":40000404,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kelle-jacob.aspx","PhotoCount":1,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Kelle-Jacob.jpg","Term":"Kelle Jacob","ID":4750,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"diana-zalewski.aspx","PhotoCount":7,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Diana-Zalewski.jpg","Term":"Diana Zalewski","ID":3971,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"eugena-washington.aspx","PhotoCount":2,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Eugena-Washington.jpg","Term":"Eugena Washington","ID":413,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kimberly-rydzewski.aspx","PhotoCount":2,"Rank":2414,"ImageSrc":"/articles/americas-next-top-model/profile/Kimberly-Rydzewski.jpg","Term":"Kimberly Rydzewski","ID":10000092,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"fatima.aspx","PhotoCount":18,"Rank":2181,"ImageSrc":"/articles/americas-next-top-model/profile/Fatima-Siad.jpg","Term":"Fatima Siad","ID":15760,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"ashley-antm13.aspx","PhotoCount":7,"Rank":2467,"ImageSrc":"/usrimages/usr3465121/3465121_4acf5f70-6c60-4353-91a0-c262509e7302-3465121-526a80d9-cf39-4f1a-87d3-83e3eabfe55b-cw-at13-prt-ashley-039782-a50884-116x80.jpg","Term":"Ashley Howard","ID":500000560,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jenascia-chakos.aspx","PhotoCount":5,"Rank":2938,"ImageSrc":"/articles/americas-next-top-model/profile/Jenascia-Chakos.jpg","Term":"Jenascia Chakos","ID":4764,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"clark-antm11.aspx","PhotoCount":7,"Rank":2936,"ImageSrc":"/articles/profiles/clark.jpg","Term":"Clark Gilmer","ID":30000118,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"megan-morris.aspx","PhotoCount":4,"Rank":3058,"ImageSrc":"/articles/americas-next-top-model/profile/Megan-Morris.jpg","Term":"Megan Morris","ID":10000175,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"brooke-staricha.aspx","PhotoCount":6,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Brooke-Staricha.jpg","Term":"Brooke Staricha","ID":2212,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"monique-calhoun.aspx","PhotoCount":4,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Monique-Calhoun.jpg","Term":"Monique Calhoun","ID":10000197,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"sheena-antm11.aspx","PhotoCount":9,"Rank":3232,"ImageSrc":"/articles/profiles/sheena.jpg","Term":"Sheena Sakai","ID":30000120,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"joanie-dodds.aspx","PhotoCount":14,"Rank":1241,"ImageSrc":"/articles/americas-next-top-model/profile/Joanie-Dodds.jpg","Term":"Joanie Dodds","ID":2216,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"eva-pigford.aspx","PhotoCount":93,"Rank":1105,"ImageSrc":"/articles/americas-next-top-model/profile/Eva-Pigford.jpg","Term":"Eva Pigford","ID":4758,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"ambreal.aspx","PhotoCount":4,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Ambreal-Williams.jpg","Term":"Ambreal Williams","ID":9785,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"natalie-antm12.aspx","PhotoCount":86,"Rank":3232,"ImageSrc":"/usrimages/usr-1/-1_829e278d-4c3a-47e8-9e5b-4afa66d740fc-a-1-789a05ec-f59c-4ce1-a613-1c4adce5234e-natalie.jpg","Term":"Natalie Pack","ID":40000410,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"amanda-babin.aspx","PhotoCount":18,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Amanda-Babin.jpg","Term":"Amanda Babin","ID":408,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"melrose-bickerstaff.aspx","PhotoCount":18,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Melrose-Bickerstaff.jpg","Term":"Melrose Bickerstaff","ID":10000180,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"felicia-provost.aspx","PhotoCount":2,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Felicia-Provost.jpg","Term":"Felicia Provost","ID":3969,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"april-wilkner.aspx","PhotoCount":15,"Rank":2096,"ImageSrc":"/articles/americas-next-top-model/profile/April-Wilkner.jpg","Term":"April Wilkner","ID":4856,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"wendy-wiltz.aspx","PhotoCount":3,"Rank":2773,"ImageSrc":"/articles/americas-next-top-model/profile/Wendy-Wiltz.jpg","Term":"Wendy Wiltz","ID":2207,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"gina-choe.aspx","PhotoCount":6,"Rank":2770,"ImageSrc":"/articles/americas-next-top-model/profile/Gina-Choe.jpg","Term":"Gina Choe","ID":2209,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"lauren-utter.aspx","PhotoCount":10,"Rank":2908,"ImageSrc":"/articles/americas-next-top-model/profile/Lauren-Utter.jpg","Term":"Lauren Utter","ID":10000116,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"christian.aspx","PhotoCount":9,"Rank":2913,"ImageSrc":"/articles/americas-next-top-model/profile/Christian-Evans.jpg","Term":"Christian Evans","ID":412,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"joslyn-antm11.aspx","PhotoCount":8,"Rank":2911,"ImageSrc":"/articles/profiles/joslyn.jpg","Term":"Joslyn Pennywell","ID":30000117,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"rebecca-epley.aspx","PhotoCount":4,"Rank":2160,"ImageSrc":"/articles/americas-next-top-model/profile/Rebecca-Epley.jpg","Term":"Rebecca Epley","ID":2173,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"amanda-swafford.aspx","PhotoCount":5,"Rank":2152,"ImageSrc":"/articles/americas-next-top-model/profile/Amanda-Swafford.jpg","Term":"Amanda Swafford","ID":4756,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"katie-cleary.aspx","PhotoCount":19,"Rank":2550,"ImageSrc":"/articles/deal-or-no-deal/profile/Katie-Cleary.jpg","Term":"Katie Cleary","ID":1314,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"julie-titus.aspx","PhotoCount":1,"Rank":2588,"ImageSrc":"/articles/americas-next-top-model/profile/Julie-Titus.jpg","Term":"Julie Titus","ID":4747,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jennipher-frost.aspx","PhotoCount":1,"Rank":2562,"ImageSrc":"/articles/americas-next-top-model/profile/Jennipher-Frost.jpg","Term":"Jennipher Frost","ID":4749,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"janet.aspx","PhotoCount":6,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Janet-Mills.jpg","Term":"Janet Mills","ID":9780,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"diane-hernandez.aspx","PhotoCount":15,"Rank":2946,"ImageSrc":"/articles/americas-next-top-model/profile/Diane-Hernandez.jpg","Term":"Diane Hernandez","ID":2195,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"aimee-2.aspx","PhotoCount":6,"Rank":2807,"ImageSrc":"/articles/americas-next-top-model/profile/Aimee-Wright.jpg","Term":"Aimee Wright","ID":15767,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"coryn-woitel.aspx","PhotoCount":5,"Rank":2952,"ImageSrc":"/articles/americas-next-top-model/profile/Coryn-Woitel.jpg","Term":"Coryn Woitel","ID":2196,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"anchal.aspx","PhotoCount":10,"Rank":2996,"ImageSrc":"/articles/americas-next-top-model/profile/Anchal-Joseph.jpg","Term":"Anchal Joseph","ID":409,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kesse-wallace.aspx","PhotoCount":2,"Rank":2955,"ImageSrc":"/articles/americas-next-top-model/profile/Kesse-Wallace.jpg","Term":"Kesse Wallace","ID":4968,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jael.aspx","PhotoCount":9,"Rank":2188,"ImageSrc":"/articles/americas-next-top-model/profile/Jael-Strauss.jpg","Term":"Jael Strauss","ID":3968,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"lisa-antm13.aspx","PhotoCount":19,"Rank":2062,"ImageSrc":"/usrimages/usr3465121/3465121_9770f5b3-1331-44dc-bb7d-cb143fa6ad22-3465121-d94df9b6-48e5-4e29-87d3-edb75a133858-cw-at13-prt-lisa-039911-311704-116x80.jpg","Term":"Lisa Ramos","ID":500000564,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"furonda-brasfield.aspx","PhotoCount":10,"Rank":2191,"ImageSrc":"/articles/americas-next-top-model/profile/Furonda-Brasfield.jpg","Term":"Furonda Brasfield","ID":2213,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"victoria-marshman.aspx","PhotoCount":5,"Rank":2406,"ImageSrc":"/articles/americas-next-top-model/profile/Victoria-Marshman.jpg","Term":"Victoria Marshman","ID":10000363,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"michelle-deighton.aspx","PhotoCount":21,"Rank":2194,"ImageSrc":"/articles/americas-next-top-model/profile/Michelle-Deighton.jpg","Term":"Michelle Deighton","ID":2177,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"nijah-antm12.aspx","PhotoCount":23,"Rank":3025,"ImageSrc":"/usrimages/usr-1/-1_77c95bb6-0c8e-445c-a61c-68c088960c7a-a-1-7a455769-42b2-406e-b61a-7a01ddb98653-nijah.jpg","Term":"Nijah Harris","ID":40000411,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"shannon-stewart.aspx","PhotoCount":2,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Shannon-Stewart.jpg","Term":"Shannon Stewart","ID":4971,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"marjorie-antm11.aspx","PhotoCount":13,"Rank":3232,"ImageSrc":"/articles/profiles/marjorie.jpg","Term":"Marjorie Conrad","ID":30000122,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"naima-mora.aspx","PhotoCount":5,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Naima-Mora.jpg","Term":"Naima Mora","ID":2178,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"marvita-washington.aspx","PhotoCount":5,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Marvita-Washington.jpg","Term":"Marvita Washington","ID":10000160,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"norelle-van-herk.aspx","PhotoCount":6,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Norelle-Van-Herk.jpg","Term":"Norelle Van Herk","ID":4754,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kara-antm13.aspx","PhotoCount":10,"Rank":3107,"ImageSrc":"/usrimages/usr3465121/3465121_189c30ef-a2c6-4ddc-9df2-0183333eec5c-3465121-712b1477-4b67-460a-875d-0bdd8eae60f7-cw-at13-prt-kara-039881-5d0a76-116x80.jpg","Term":"Kara Vincent","ID":500000567,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"j-alexander.aspx","PhotoCount":12,"Rank":3084,"ImageSrc":"/articles/americas-next-top-model/profile/J-Alexander.jpg","Term":"J. Alexander","ID":15768,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"sandra-antm12.aspx","PhotoCount":94,"Rank":3232,"ImageSrc":"/usrimages/usr-1/-1_a59fe45e-9b1a-4fc2-a460-ebf97d10d7a2-a-1-05b40565-1955-414a-9549-c8aaec44d7f9-sandra.jpg","Term":"Sandra Nyanchoka","ID":40000412,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"ebony.aspx","PhotoCount":6,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Ebony-Morgan.jpg","Term":"Ebony Morgan","ID":9783,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"nicole-borud.aspx","PhotoCount":3,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Nicole-Borud.jpg","Term":"Nicole Borud","ID":4753,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"sara-albert.aspx","PhotoCount":5,"Rank":2053,"ImageSrc":"/articles/americas-next-top-model/profile/Sara-Albert.jpg","Term":"Sara Albert","ID":2214,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"sundau-antm13.aspx","PhotoCount":48,"Rank":2081,"ImageSrc":"/usrimages/usr3465121/3465121_41df01bb-0e68-4b39-bcfb-67b94466049a-3465121-58524944-2dae-45a0-b9f5-e8d4fc227141-cw-at13-prt-sundai-039982-cf4d1c-116x80.jpg","Term":"Sundai Love","ID":500000556,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"michelle-babin.aspx","PhotoCount":12,"Rank":1889,"ImageSrc":"/articles/americas-next-top-model/profile/Michelle-Babin.jpg","Term":"Michelle Babin","ID":10000188,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"nicole-antm13.aspx","PhotoCount":117,"Rank":2169,"ImageSrc":"/usrimages/usr3465121/3465121_7618e091-7a2e-4cf2-bf9f-f82770d3fbaa-3465121-abc35fbb-2191-4723-992e-5ca2622487b1-cw-at13-prt-nicole-039941-1e1db7-116x80.jpg","Term":"Nicole Fox","ID":500000558,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jaeda.aspx","PhotoCount":9,"Rank":2489,"ImageSrc":"/articles/americas-next-top-model/profile/Jaeda-Young.jpg","Term":"Jaeda Young","ID":414,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"sarah-dankleman.aspx","PhotoCount":4,"Rank":2484,"ImageSrc":"/articles/americas-next-top-model/profile/Sarah-Dankleman.jpg","Term":"Sarah Dankleman","ID":2186,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"ebony-taylor.aspx","PhotoCount":17,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Ebony-Taylor.jpg","Term":"Ebony Taylor","ID":2192,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"danielle-evans.aspx","PhotoCount":6,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Danielle-Evans.jpg","Term":"Danielle Evans","ID":2217,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"nik-pace.aspx","PhotoCount":17,"Rank":1162,"ImageSrc":"/articles/americas-next-top-model/profile/Nik-Pace.jpg","Term":"Nik Pace","ID":2203,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"whitney-cunningham.aspx","PhotoCount":6,"Rank":1592,"ImageSrc":"/articles/americas-next-top-model/profile/Whitney-Cunningham.jpg","Term":"Whitney Cunningham","ID":3960,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"nnenna-agba.aspx","PhotoCount":6,"Rank":1590,"ImageSrc":"/articles/americas-next-top-model/profile/Nnenna-Agba.jpg","Term":"Nnenna Agba","ID":2205,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"magdalena-rivas.aspx","PhotoCount":1,"Rank":2859,"ImageSrc":"/articles/americas-next-top-model/profile/Magdalena-Rivas.jpg","Term":"Magdalena Rivas","ID":4745,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"bianca.aspx","PhotoCount":13,"Rank":1214,"ImageSrc":"/articles/americas-next-top-model/profile/Bianca-Golden.jpg","Term":"Bianca Golden","ID":9784,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"allison-harvard.aspx","PhotoCount":79,"Rank":3232,"ImageSrc":"/usrimages/usr-1/-1_0dfb4aef-6db3-422a-82d8-cf041760e8dc-a-1-2b072183-f96e-46e2-99ab-6e38c3855788-allison.jpg","Term":"Allison Harvard","ID":40000402,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"paulina-porizkova.aspx","PhotoCount":51,"Rank":1601,"ImageSrc":"/articles/dancing-with-the-stars/profile/Paulina-Porizkova.jpg","Term":"Paulina Porizkova","ID":5022,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"lisa-jackson.aspx","PhotoCount":8,"Rank":1994,"ImageSrc":"/articles/americas-next-top-model/profile/Lisa-Jackson.jpg","Term":"Lisa Jackson","ID":10000128,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kortnie-coles.aspx","PhotoCount":40,"Rank":1617,"ImageSrc":"/usrimages/usr-1/-1_59d48be4-1a18-439f-a87b-dcb1cfde293e-a-1-e868f373-0d50-4964-a17d-68100361c04e-kortnie.jpg","Term":"Kortnie Coles","ID":40000408,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"natasha-galkina.aspx","PhotoCount":19,"Rank":3076,"ImageSrc":"/articles/americas-next-top-model/profile/Natasha-Galkina.jpg","Term":"Natasha Galkina","ID":10000205,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"anna-bradfield.aspx","PhotoCount":3,"Rank":2915,"ImageSrc":"/articles/americas-next-top-model/profile/Anna-Bradfield.jpg","Term":"Anna Bradfield","ID":4760,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"nikeysha-antm11.aspx","PhotoCount":3,"Rank":3140,"ImageSrc":"/articles/profiles/nikeysha.jpg","Term":"Nikeysha Clarke","ID":30000113,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"tiffany-richardson.aspx","PhotoCount":6,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Tiffany-Richardson.jpg","Term":"Tiffany Richardson","ID":2169,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"brita-patersons.aspx","PhotoCount":6,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Brita-Petersons.jpg","Term":"Brita Petersons","ID":2188,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"elyse-sewell.aspx","PhotoCount":6,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Elyse-Sewell.jpg","Term":"Elyse Sewell","ID":4970,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"erin-antm13.aspx","PhotoCount":75,"Rank":1515,"ImageSrc":"/usrimages/usr3465121/3465121_1ff25287-ca69-4675-a6a8-3688b3e4d81c-3465121-b8330be4-68c3-4cbe-8f17-8c94479b2032-cw-at13-prt-erin-039851-a81dac-116x80.jpg","Term":"Erin Wagner","ID":500000562,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"bianca-antm13.aspx","PhotoCount":4,"Rank":3232,"ImageSrc":"/usrimages/usr3465121/3465121_703236a0-e8d2-4b51-b240-5e9ff4dc9fd5-3465121-7ed73c7f-ac0f-4696-9596-a1a75dca5a13-cw-at13-prt-bianca-039802-a07e05-116x80.jpg","Term":"Bianca Richardson","ID":500000563,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"nigel-barker.aspx","PhotoCount":69,"Rank":1794,"ImageSrc":"/articles/americas-next-top-model/profile/Nigel-Barker.jpg","Term":"Nigel Barker","ID":15769,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"rae-antm13.aspx","PhotoCount":11,"Rank":1901,"ImageSrc":"/usrimages/usr3465121/3465121_922b8072-ebae-4795-bc54-b5b99c74edb0-3465121-3a5ea3f2-ef9b-4147-ac9a-09c030e3a39b-cw-at13-prt-rae-039971-ae394e-116x80.jpg","Term":"Rae Weisz","ID":500000555,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"tahlia-brookins.aspx","PhotoCount":27,"Rank":1798,"ImageSrc":"/usrimages/usr-1/-1_9988dd82-30cf-4a42-81f6-9e80df59c710-a-1-bce36248-4604-44ea-bdf6-9c209f1e070c-tahlia.jpg","Term":"Tahlia Brookins","ID":40000413,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jenah.aspx","PhotoCount":12,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Jenah-Doucette.jpg","Term":"Jenah Doucette","ID":9779,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jay-manuel.aspx","PhotoCount":64,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Jay-Manuel.jpg","Term":"Jay Manuel","ID":15770,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"xiomara-frans.aspx","PhotoCount":6,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Xiomara-Frans.jpg","Term":"Xiomara Frans","ID":4765,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"dionne.aspx","PhotoCount":12,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Dionne-Walters.jpg","Term":"Dionne Walters","ID":3970,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"fo-antm12.aspx","PhotoCount":49,"Rank":3232,"ImageSrc":"/usrimages/usr-1/-1_d8d902c7-495e-4bf8-9040-b1759f9bd7f0-a-1-dfa61abe-a800-4876-b1de-8b7d00c30151-fo.jpg","Term":"Fo Porter","ID":40000405,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"brittany.aspx","PhotoCount":18,"Rank":1927,"ImageSrc":"/articles/americas-next-top-model/profile/Brittany-Hatch.jpg","Term":"Brittany Hatch","ID":3973,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"isis-antm11.aspx","PhotoCount":10,"Rank":2873,"ImageSrc":"/articles/profiles/isis.jpg","Term":"Isis King","ID":30000109,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"noelle-staggers.aspx","PhotoCount":7,"Rank":2651,"ImageSrc":"/articles/americas-next-top-model/profile/Noelle-Staggers.jpg","Term":"Noelle Staggers","ID":2190,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"caridee-english.aspx","PhotoCount":258,"Rank":2899,"ImageSrc":"/articles/americas-next-top-model/profile/CariDee-English.jpg","Term":"CariDee English","ID":411,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"samantha-francis.aspx","PhotoCount":4,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Samantha-Francis.jpg","Term":"Samantha Francis","ID":3962,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"katarzyna-dolinska.aspx","PhotoCount":12,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Katarzyna-Dolinska.jpg","Term":"Katarzyna Dolinska","ID":10000072,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"camille-mcdonald.aspx","PhotoCount":32,"Rank":2139,"ImageSrc":"/articles/americas-next-top-model/profile/Camille-McDonald.jpg","Term":"Camille McDonald","ID":4855,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"christina-murphy.aspx","PhotoCount":53,"Rank":1929,"ImageSrc":"/articles/americas-next-top-model/profile/Christina-Murphy.jpg","Term":"Christina Murphy","ID":2176,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kari-schmidt.aspx","PhotoCount":7,"Rank":2149,"ImageSrc":"/articles/americas-next-top-model/profile/Kari-Schmidt.jpg","Term":"Kari Schmidt","ID":2208,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"ann-markley.aspx","PhotoCount":8,"Rank":2648,"ImageSrc":"/articles/americas-next-top-model/profile/Ann-Markley.jpg","Term":"Ann Markley","ID":4755,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"whitney-thompson.aspx","PhotoCount":54,"Rank":2635,"ImageSrc":"/articles/americas-next-top-model/profile/Whitney-Thompson.jpg","Term":"Whitney Thompson","ID":10000365,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"lauren-brie-antm11.aspx","PhotoCount":8,"Rank":3232,"ImageSrc":"/articles/profiles/lauren-brie.jpg","Term":"Lauren Brie Harding","ID":30000110,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kimberly-leemans.aspx","PhotoCount":10,"Rank":2036,"ImageSrc":"/articles/americas-next-top-model/profile/Kimberly-Leemans.jpg","Term":"Kimberly Leemans","ID":10000091,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"tyra-banks.aspx","PhotoCount":497,"Rank":2011,"ImageSrc":"/articles/americas-next-top-model/profile/Tyra-Banks.jpg","Term":"Tyra Banks","ID":15772,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"cassandra-watson.aspx","PhotoCount":4,"Rank":2046,"ImageSrc":"/articles/americas-next-top-model/profile/Cassandra-Watson.jpg","Term":"Cassandra Watson","ID":3972,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"cassandra-whitehead.aspx","PhotoCount":21,"Rank":2200,"ImageSrc":"/articles/americas-next-top-model/profile/Cassandra-Whitehead.jpg","Term":"Cassandra Whitehead","ID":2193,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"lluvy-gomez.aspx","PhotoCount":7,"Rank":2049,"ImageSrc":"/articles/americas-next-top-model/profile/Lluvy-Gomez.jpg","Term":"Lluvy Gomez","ID":2168,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kim-stolz.aspx","PhotoCount":51,"Rank":1664,"ImageSrc":"/articles/americas-next-top-model/profile/Kim-Stolz.jpg","Term":"Kim Stolz","ID":2200,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"laura-antm13.aspx","PhotoCount":101,"Rank":767,"ImageSrc":"/usrimages/usr3465121/3465121_aa55d908-455c-4550-b15a-1af9d28b1649-3465121-2a65b2db-a42a-4eca-9298-85dd3aa9fbdb-cw-at13-prt-laura-039892-559cd8-116x80.jpg","Term":"Laura Kirkpatrick","ID":500000568,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"courtney-antm13.aspx","PhotoCount":1,"Rank":1693,"ImageSrc":"/usrimages/usr3465121/3465121_50fe0d2e-38e6-4f01-9e27-094d43f89888-3465121-51553b9e-847d-4a3b-8441-a4566729cad8-cw-at13-prt-courtney-039832-1ac4a6-116x80.jpg","Term":"Courtney Davies","ID":500000561,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"teyona-antm12.aspx","PhotoCount":78,"Rank":1999,"ImageSrc":"/usrimages/usr-1/-1_8fcb3ed7-af38-4cc8-ba15-4e01c4d51a65-a-1-8f404aa1-c31f-4a97-b5b9-49b7acc12931-teyona.jpg","Term":"Teyona Anderson","ID":40000414,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"adrianne-curry.aspx","PhotoCount":54,"Rank":1870,"ImageSrc":"/articles/americas-next-top-model/profile/Adrianne-Curry.jpg","Term":"Adrianne Curry","ID":4972,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"nicole-panttoni.aspx","PhotoCount":1,"Rank":2202,"ImageSrc":"/articles/americas-next-top-model/profile/Nicole-Panattoni.jpg","Term":"Nicole Panattoni","ID":4965,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"giselle-samson.aspx","PhotoCount":2,"Rank":2987,"ImageSrc":"/articles/americas-next-top-model/profile/Giselle-Samson.jpg","Term":"Giselle Samson","ID":4967,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"atalya.aspx","PhotoCount":2,"Rank":2966,"ImageSrc":"/articles/americas-next-top-model/profile/Atalya-Slater.jpg","Term":"Atalya Slater","ID":15763,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"lisa-damato.aspx","PhotoCount":33,"Rank":3151,"ImageSrc":"/articles/americas-next-top-model/profile/Lisa-DAmato.jpg","Term":"Lisa D'Amato","ID":2198,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"dominique.aspx","PhotoCount":9,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Dominique-Reighard.jpg","Term":"Dominique Reighard","ID":15761,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kathleen-dujour.aspx","PhotoCount":2,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Kathleen-DuJour.jpg","Term":"Kathleen DuJour","ID":3965,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"hannah-antm11.aspx","PhotoCount":5,"Rank":2300,"ImageSrc":"/articles/profiles/hannah.jpg","Term":"Hannah White","ID":30000108,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"sarah-vanderhaar.aspx","PhotoCount":9,"Rank":2203,"ImageSrc":"/articles/americas-next-top-model/profile/Sarah-Vonderhaar.jpg","Term":"Sarah Vonderhaar","ID":3961,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"catie-anderson.aspx","PhotoCount":15,"Rank":2322,"ImageSrc":"/articles/americas-next-top-model/profile/Catie-Anderson.jpg","Term":"Catie Anderson","ID":4767,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jessica-antm12.aspx","PhotoCount":23,"Rank":2817,"ImageSrc":"/usrimages/usr-1/-1_c326b255-0f21-414e-9cc7-839a524867c8-a-1-5c5d608b-8b57-480a-9e7d-9c7ee7725239-jessica.jpg","Term":"Jessica Santiago","ID":40000407,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"ashley-black.aspx","PhotoCount":14,"Rank":2346,"ImageSrc":"/articles/americas-next-top-model/profile/Ashley-Black.jpg","Term":"Ashley Black","ID":2191,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"yoanna-house.aspx","PhotoCount":35,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Yoanna-House.jpg","Term":"Yoanna House","ID":4859,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"sharaun-antm11.aspx","PhotoCount":2,"Rank":1792,"ImageSrc":"/articles/profiles/sharaun.jpg","Term":"ShaRaun Brown","ID":30000119,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jennifer-antm13.aspx","PhotoCount":40,"Rank":1790,"ImageSrc":"/usrimages/usr3465121/3465121_3b1d4a74-65fb-4d77-b5c5-052b955f5870-3465121-3fb01bd8-071f-4fc1-9a8d-5b90edd70f86-cw-at13-prt-jennifer-039871-8f733f-116x80.jpg","Term":"Jennifer An","ID":500000565,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"amis.aspx","PhotoCount":5,"Rank":1921,"ImageSrc":"/articles/americas-next-top-model/profile/Amis-Jenkins.jpg","Term":"Amis Jenkins","ID":15765,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"leslie-mancia.aspx","PhotoCount":6,"Rank":2132,"ImageSrc":"/articles/americas-next-top-model/profile/Leslie-Mancia.jpg","Term":"Leslie Mancia","ID":2211,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jaslene-gonzalez.aspx","PhotoCount":260,"Rank":2127,"ImageSrc":"/articles/americas-next-top-model/profile/Jaslene-Gonzalez.jpg","Term":"Jaslene Gonzalez","ID":3966,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"mckey-antm11.aspx","PhotoCount":33,"Rank":3232,"ImageSrc":"/articles/profiles/mckey.jpg","Term":"McKey Sullivan","ID":30000114,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"tessa-carlson.aspx","PhotoCount":2,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Tessa-Carlson.jpg","Term":"Tessa Carlson","ID":4963,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"cassie-grisham.aspx","PhotoCount":1,"Rank":1237,"ImageSrc":"/articles/americas-next-top-model/profile/Cassie-Grisham.jpg","Term":"Cassie Grisham","ID":4751,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"toccara-jones.aspx","PhotoCount":47,"Rank":1643,"ImageSrc":"/articles/americas-next-top-model/profile/Toccara-Jones.jpg","Term":"Toccara Jones","ID":4752,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kyle-kavanaugh.aspx","PhotoCount":16,"Rank":1550,"ImageSrc":"/articles/americas-next-top-model/profile/Kyle-Kavanagh.jpg","Term":"Kyle Kavanagh","ID":2197,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"allison.aspx","PhotoCount":3,"Rank":2134,"ImageSrc":"/articles/americas-next-top-model/profile/Allison-Kuehn.jpg","Term":"Allison Kuehn","ID":15766,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"sara-raceytabrizi.aspx","PhotoCount":6,"Rank":2879,"ImageSrc":"/articles/americas-next-top-model/profile/Sara-Racey-Tabrizi.jpg","Term":"Sara Racey-Tabrizi","ID":4769,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"rachel-antm13.aspx","PhotoCount":0,"Rank":2760,"ImageSrc":"/usrimages/usr3465121/3465121_cbd6da86-4e47-4d5e-8e00-e5d4a924cb20-3465121-c2d43ddf-4e1b-4235-a2e5-b1033e6e38db-cw-at13-prt-rachel-039951-5ed7d7-116x80.jpg","Term":"Rachel Echelberger","ID":500000566,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"sarah-rhoades.aspx","PhotoCount":11,"Rank":2884,"ImageSrc":"/articles/americas-next-top-model/profile/Sarah-Rhoades.jpg","Term":"Sarah Rhoades","ID":2194,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"heather-2.aspx","PhotoCount":12,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Heather-Kuzmich.jpg","Term":"Heather Kuzmich","ID":9781,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"aj.aspx","PhotoCount":9,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/AJ-Stewart.jpg","Term":"A.J. Stewart","ID":407,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"sarah-hartshorne.aspx","PhotoCount":6,"Rank":2707,"ImageSrc":"/articles/americas-next-top-model/profile/Sarah-Hartshorne.jpg","Term":"Sarah Hartshorne","ID":10000279,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"london-antm12.aspx","PhotoCount":60,"Rank":2687,"ImageSrc":"/usrimages/usr-1/-1_1a657541-7ce1-4bb9-be32-ebd4ee00224e-a-1-b74ba10b-48aa-4a54-80a3-89b722f542eb-london.jpg","Term":"London Levi","ID":40000409,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"keenyah-hill.aspx","PhotoCount":4,"Rank":2748,"ImageSrc":"/articles/americas-next-top-model/profile/Keenyah-Hill-.jpg","Term":"Keenyah Hill ","ID":2179,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"robin-manning.aspx","PhotoCount":3,"Rank":2755,"ImageSrc":"/articles/americas-next-top-model/profile/Robin-Manning.jpg","Term":"Robin Manning","ID":4969,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"chantal.aspx","PhotoCount":12,"Rank":2750,"ImageSrc":"/articles/americas-next-top-model/profile/Chantal-Jones.jpg","Term":"Chantal Jones","ID":9782,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"nicole-linkletter.aspx","PhotoCount":52,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Nicole-Linkletter-.jpg","Term":"Nicole Linkletter ","ID":2204,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"isabella-antm12.aspx","PhotoCount":26,"Rank":3232,"ImageSrc":"/usrimages/usr-1/-1_17d8fcd9-6ac9-42b1-8f3f-e6e204bc943b-a-1-7ea5d61e-b487-467d-8bd6-72a5c1c3d386-isabella.jpg","Term":"Isabella Falk","ID":40000406,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"ebony-haith.aspx","PhotoCount":2,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Ebony-Haith.jpg","Term":"Ebony Haith","ID":4966,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jade-cole.aspx","PhotoCount":30,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Jade-Cole.jpg","Term":"Jade Cole","ID":2215,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"heather-blumberg.aspx","PhotoCount":5,"Rank":1864,"ImageSrc":"/articles/americas-next-top-model/profile/Heather-Blumberg.jpg","Term":"Heather Blumberg","ID":4763,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"aminat-ayinde.aspx","PhotoCount":45,"Rank":1609,"ImageSrc":"/usrimages/usr-1/-1_5955e94b-3f5a-4fc7-bc14-0ea009720329-a-1-514214cd-805e-40d1-821a-c7d0ab16bea6-aminat.jpg","Term":"Aminat Ayinde","ID":40000403,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kristi-grommet.aspx","PhotoCount":2,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Kristi-Grommet.jpg","Term":"Kristi Grommet","ID":4748,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"claire.aspx","PhotoCount":8,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Claire-Unabia.jpg","Term":"Claire Unabia","ID":15762,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"megg-morales.aspx","PhotoCount":6,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Megg-Morales.jpg","Term":"Megg Morales","ID":10000176,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"jayla-rubinelli.aspx","PhotoCount":4,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Jayla-Rubinelli.jpg","Term":"Jayla Rubinelli","ID":2201,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"brittany-antm11.aspx","PhotoCount":5,"Rank":3232,"ImageSrc":"/articles/profiles/brittany.jpg","Term":"Brittany Rubalcaba","ID":30000116,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"tatiana-dante.aspx","PhotoCount":7,"Rank":2019,"ImageSrc":"/articles/americas-next-top-model/profile/Tatiana-Dante.jpg","Term":"Tatiana Dante","ID":2187,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"bethany-harrison.aspx","PhotoCount":3,"Rank":2981,"ImageSrc":"/articles/americas-next-top-model/profile/Bethany-Harrison.jpg","Term":"Bethany Harrison","ID":4761,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"lulu-antm13.aspx","PhotoCount":5,"Rank":2974,"ImageSrc":"/usrimages/usr3465121/3465121_e8d5b483-7193-4abe-98ee-aa083e772bd0-3465121-4e7c2f57-4780-4e05-8081-c6d38b9e0d76-cw-at13-prt-lulu-039922-d7569b-116x80.jpg","Term":"Lulu Braithwaite","ID":500000557,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"brandy-rusher.aspx","PhotoCount":5,"Rank":3027,"ImageSrc":"/articles/americas-next-top-model/profile/Brandy-Rusher.jpg","Term":"Brandy Rusher","ID":2189,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"saleisha-stowers.aspx","PhotoCount":30,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Saleisha-Stowers.jpg","Term":"Saleisha Stowers","ID":10000272,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"leah-darrow.aspx","PhotoCount":1,"Rank":3232,"ImageSrc":"/articles/americas-next-top-model/profile/Leah-Darrow.jpg","Term":"Leah Darrow","ID":4746,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"bre-scullark.aspx","PhotoCount":12,"Rank":2822,"ImageSrc":"/articles/americas-next-top-model/profile/Bre-Scullark.jpg","Term":"Bre Scullark","ID":2202,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"brittany-antm13.aspx","PhotoCount":85,"Rank":2206,"ImageSrc":"/usrimages/usr3465121/3465121_c508c824-b01e-4dd1-9576-65bd83d4895a-3465121-fbbfa1af-5701-4c56-b39f-608131e9d9ad-cw-at13-prt-brittany-039822-b28605-116x80.jpg","Term":"Brittany Markert","ID":500000559,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"stacy-ann-fequiere.aspx","PhotoCount":9,"Rank":2834,"ImageSrc":"/articles/americas-next-top-model/profile/Stacy-Ann-Fequiere.jpg","Term":"Stacy Ann Fequiere","ID":10000302,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"kathy-hoxit.aspx","PhotoCount":4,"Rank":2968,"ImageSrc":"/articles/americas-next-top-model/profile/Kathy-Hoxit.jpg","Term":"Kathy Hoxit","ID":2206,"RelatedID":2,"Scope":0,"MaxCount":3},{"Url":"elina-antm11.aspx","PhotoCount":13,"Rank":2838,"ImageSrc":"/articles/profiles/elina.jpg","Term":"Elina Ivanova","ID":30000112,"RelatedID":2,"Scope":0,"MaxCount":3}]};
var oExcludeData = {"Ids":null,"Tags":["h2"],"Classes":["wiki-text"]};
var oIncludeData = {"Ids":null,"Tags":null,"Classes":["content-col"]};
var strTermColor = null || "#999999";
var strBaseUrl = '';
var oRules = {};
if (oExcludeData)
{
oRules.oExclude = {
aIds: oExcludeData.Ids || []
,aTags: oExcludeData.Tags || []
,aClasses: oExcludeData.Classes || []
};
}
if (oIncludeData)
{
oRules.oInclude = {
aIds: oIncludeData.Ids || []
,aTags: oIncludeData.Tags || []
,aClasses: oIncludeData.Classes || []
};
}
var afncCastOverlayBuilders = {};
afncCastOverlayBuilders[0] = function($data){var $text = [];var _write = function(text) {$text.push((typeof text == "number")?text:(text||""));};with($data){ _write('<div id=\"divHoverHandle');_write(Term);_write('\" style=\"width:285px;background:url(\'');_write(strBaseUrl);_write('/images/pop-shadow.png\');zoom:1;\">\n<div style=\"border:1px solid #666666; background:#eeeeee; font-size:11px;  padding:7px; position:relative;bottom:3px;right:3px;zoom:1;\">\n<a href=\"');_write(strBaseUrl);_write('/');_write(Url);_write('\"><img src=\"http://www.buddytv.com');_write(ImageSrc);_write('\" style=\"border:none;width:92px;float:left;margin-right:5px;\"/></a>\n<div style=\"float:right;width:165px;zoom:1;\">\n<div style=\"font-size:16px;font-weight:bold;margin:-2px 0px 5px 0px;zoom:1;\"><a href=\"');_write(strBaseUrl);_write('/');_write(Url);_write('\">');_write(Term);_write('</a></div>\n<div style=\"margin-bottom:2px;zoom:1;\">Today’s Ranking: ');_write(Rank);_write('</div>\n<div style=\"margin-bottom:3px;zoom:1;\"><a href=\"');_write(strBaseUrl);_write('/btvredir.aspx?ctxtypid=21&ctxid=');_write(ID);_write('&pid=21&pnum=-1\">View Photos</a></div>\n<div style=\"zoom:1;\"><a href=\"');_write(strBaseUrl);_write('/btvredir.aspx?ctxtypid=21&ctxid=');_write(ID);_write('&pid=28&pnum=-1\">Rate now &raquo;</a></div>\n</div>\n<div style=\"clear:both;\"></div>\n</div>\n</div>');}return $text.join("");};
afncCastOverlayBuilders[1] = function($data){var $text = [];var _write = function(text) {$text.push((typeof text == "number")?text:(text||""));};with($data){ _write('<div id=\"divHoverHandle');_write(Term);_write('\" style=\"width:285px;background:url(\'');_write(strBaseUrl);_write('/images/pop-shadow.png\'); zoom:1;\">\n<div style=\"border:1px solid #666666; background:#eeeeee; font-size:11px;  padding:7px; position:relative;bottom:3px;right:3px;zoom:1;\">\n<a href=\"');_write(strBaseUrl);_write('/');_write(Url);_write('\"><img src=\"http://www.buddytv.com');_write(ImageSrc);_write('\" style=\"border:none;width:92px;float:left;margin-right:5px;\"/></a>\n<div style=\"float:right;width:165px;zoom:1;\">\n<div style=\"font-size:16px;font-weight:bold;margin:-2px 0px 5px 0px;zoom:1;\"><a href=\"');_write(strBaseUrl);_write('/');_write(Url);_write('\">');_write(Term);_write('</a></div>\n<div style=\"margin-bottom:2px;zoom:1;\">Today’s Ranking: ');_write(Rank);_write('</div>\n<div style=\"margin-bottom:3px;zoom:1;\"><a href=\"');_write(strBaseUrl);_write('/btvredir.aspx?ctxtypid=-1000&ctxid=');_write(ID);_write('&pid=21&pnum=-1\">View Photos (');_write(PhotoCount);_write(')</a></div>\n<div style=\"margin-bottom:3px;zoom:1;\"><a href=\"');_write(strBaseUrl);_write('/btvredir.aspx?ctxtypid=-1000&ctxid=');_write(ID);_write('&pid=35&pnum=-1\">Play Trivia &raquo;</a></div>\n</div>\n<div style=\"clear:both;\"></div>\n</div>\n</div>');}return $text.join("");};
function Run()
{
function GiveElementLayout(el)
{
if (el && !el.hasLayout) el.style.zoom = 1;
}
function GetWindowPosition()
{
function f(p1, p2)
{
var iWin = window[p1] ? window[p1] : 0;
var iDocEl = document.documentElement ? document.documentElement[p2] : 0;
var iBody = document.body ? document.body[p2] : 0;
var i = iWin ? iWin : 0;
if (iDocEl && (!i || (i > iDocEl))) i = iDocEl;
return(iBody && (!i || (i > iBody)) ? iBody : i);
}
var iW = f('innerWidth', 'clientWidth');
var iH = f('innerHeight', 'clientHeight');
var iL = f('pageXOffset', 'scrollLeft');
var iT = f('pageYOffset', 'scrollTop');
return({t:iT, r:(iW + iL), b:(iH + iT), l:iL});
}
function GetElPosition(el)
{
var pt = GetAbsPos(el);
return({t:pt.y, r:(pt.x + el.offsetWidth), b:(pt.y + el.offsetHeight), l:pt.x});
}
function GetOverlayPlacementPoint(elContext, elOverlay)
{
var elPos = GetElPosition(elContext);
var wndPos = GetWindowPosition();
var iSpace = 10;
var posSpace = {t:(elPos.t - wndPos.t - iSpace), r:(wndPos.r - elPos.r - iSpace), b:(wndPos.b - elPos.b - iSpace), l:(elPos.l - wndPos.l - iSpace)};
var iW = elOverlay.offsetWidth;
var iH = elOverlay.offsetHeight;
var pt = {x:wndPos.l, y:wndPos.t};
if (posSpace.t >= iH)
{
pt.y = elPos.t - iH;
}
else if (posSpace.b >= iH)
{
pt.y = elPos.b;
}
if (posSpace.r >= iW)
{
pt.x = elPos.r;
}
else if (posSpace.l >= iW)
{
pt.x = elPos.l - iW;
}
//pt.y += 3;
return(pt);
}
function AdjustPlacementPoint(pt, elOverlay)
{
var iW = elOverlay.offsetWidth;
var iH = elOverlay.offsetHeight;
var posOverlay = {t:pt.y, r:(pt.x + iW), b:(pt.y + iH), l:pt.x};
var wndPos = GetWindowPosition();
var iSpace = 10;
var posSpace = {t:(posOverlay.t - wndPos.t - iSpace), r:(wndPos.r - posOverlay.r - iSpace), b:(wndPos.b - posOverlay.b - iSpace), l:(posOverlay.l - wndPos.l - iSpace)};
if (posSpace.r < 0)
{
pt.x += posSpace.r;
}
else if (posSpace.l < 0)
{
pt.x += (0 - posSpace.l);
}
if (posSpace.t < 0)
{
pt.y += (0 - posSpace.t);
}
else if (posSpace.b < 0)
{
pt.y += posSpace.b;
}
return(pt);
}
function GetAbsPos(element)
{
function F(el)
{ 
var pt = {x:0,y:0};
if (el)
{ 
GiveElementLayout(el); 
pt.x += el.offsetLeft;
pt.y += el.offsetTop; 
var elOffset = el.offsetParent;
var elParent = el.parentNode;
while (elOffset)
{
GiveElementLayout(elOffset);
pt.x += elOffset.offsetLeft; 
pt.y += elOffset.offsetTop; 
if ((document.body != elOffset) && (document.documentElement != elOffset))
{ 
pt.x -= elOffset.scrollLeft; 
pt.y -= elOffset.scrollTop; 
} 
if (false && blnFirefox)
{ 
while (elParent && (elOffset != elParent))
{ 
pt.x -= elParent.scrollLeft; 
pt.y -= elParent.scrollTop; 
elParent = elParent.parentNode; 
}
} 
elParent = elOffset.parentNode;
elOffset = elOffset.offsetParent; 
} 
} 
return pt; 
} 
var blnFirefox = !!element.addEventListener;
if (!blnFirefox)
{
F(element, blnFirefox);
}
return(F(element, blnFirefox));
}
function AddEvent(obj, type, fn)
{
if (obj.addEventListener)
{
obj.addEventListener(type, fn, false);
}
else if (obj.attachEvent)
{
obj["e" + type + fn] = fn;
obj[type + fn] = function() { obj["e" + type + fn](window.event); }
obj.attachEvent("on" + type, obj[type + fn]);
}
}
function GetOverlayNode(strTerm)
{
if (!htOverlays[strTerm])
{
var oData = htTermsData[strTerm];
var strOverlayHtml = afncCastOverlayBuilders[oData.Scope](oData);
var div = document.createElement("div");
div.innerHTML = strOverlayHtml;
htOverlays[strTerm] = div.childNodes[0];
}
return(htOverlays[strTerm]);
}
function ShowOverlay(oNode, strTerm, pt)
{
blnNeedEventHookup = !htOverlays[strTerm];
HideCurrentOverlay(true);
elCurrentOverlay = GetOverlayNode(strTerm);
divOverlay.appendChild(elCurrentOverlay);
document.body.appendChild(divOverlay);
if (blnNeedEventHookup)
{
var elHandler = document.getElementById("divHoverHandle" + strTerm);
AddEvent(elHandler, blnIsIE ? "mouseenter" : "mouseover", OverlayOver);
AddEvent(elHandler, blnIsIE ? "mouseleave" : "mouseout", CommonOut);
}
var oPoint = GetAbsPos(oNode);
var overlayPt = GetOverlayPlacementPoint(oNode, divOverlay);
if (oNode._blnWrap)
{
overlayPt.x = pt.x - divOverlay.offsetWidth;
AdjustPlacementPoint(overlayPt, divOverlay);
}
divOverlay.style.visibility = "hidden";
divOverlay.style.top = overlayPt.y + "px";
divOverlay.style.left = overlayPt.x + "px";
divOverlay.style.visibility = "visible";
}
function MouseCoordinates(evt)
{
if (blnIsIE)
{
var oPoint = GetAbsPos(evt.srcElement);
return({x:(evt.x + oPoint.x), y:(evt.y + oPoint.y)});
}
else
{
return({x:evt.pageX, y:evt.pageY});
}
}
function HideCurrentOverlay(bln)
{
function F()
{
if ((elCurrentOverlay) && (iCounter_local == iCounter) && (!iOverCount))
{
iOverCount = 0;
divOverlay.removeChild(elCurrentOverlay);
divOverlay.parentNode.removeChild(divOverlay);
elCurrentOverlay = null;
}
}
iCounter++;
var iCounter_local = iCounter;
if (bln)
{
iOverCount= 0;
F();
}
else
{
window.setTimeout(F, 400);
}
}
var iCounter = 0;
if (Btv && Btv.Ads)
{
//Btv.Ads.onChangeRequest.Attach(RunFromBody);
}
var elCurrentOverlay;
var htOverlays = {};
function HookupTerm(oNode, strTerm)
{
function Over(evt)
{
ShowOverlay(oNode, strTerm, MouseCoordinates(evt));
iOverCount++;
}
AddEvent(oNode, blnIsIE ? "mouseenter" : "mouseover", Over);
AddEvent(oNode, blnIsIE ? "mouseleave" : "mouseout", CommonOut);
AddEvent(oNode, "click", function(){HideCurrentOverlay(true);});
}
function OverlayOver()
{
iOverCount++;
}
function CommonOut()
{
iOverCount--;
HideCurrentOverlay();
}
var iOverCount = 0; 
var divOverlay = document.createElement('div');
divOverlay.style.position = "absolute";
divOverlay.style.zIndex = "9999";
var blnIsIE = !divOverlay.addEventListener;
var astrTerms = [];
var htTermsData = {};
function ProcessOverlayData()
{
for (var i=0; i < oOverlayData.data.length; i++)
{
if (!htTermsData[oOverlayData.data[i].Term])
{
astrTerms.push(oOverlayData.data[i].Term);
htTermsData[oOverlayData.data[i].Term] = oOverlayData.data[i];
oOverlayData.data[i].strBaseUrl = "";
}
}
}
ProcessOverlayData();
window["RunBtvTokenizer"] = function(el, oOverlayData_)
{
if (oOverlayData_)
{
oOverlayData.data = oOverlayData_;
ProcessOverlayData();
} 
if (el)
{
if (astrTerms.length > 0) BtvOverlay.Dom.Tokenizer.Run(el, astrTerms, htTermsData, oRules, strTermColor, HookupTerm);
blnPending = false;
}
else
{
Refresh();
}
}
function RunFromBody()
{
RunBtvTokenizer(document.body);
}
function TimedRun()
{
if (blnPending) RunFromBody();
}
function Refresh()
{
if (!blnPending)
{
blnPending = true;
window.setTimeout(TimedRun, 1000);
}
}
var blnPending = true;
if (true)
{
if (window["YAHOO"] && YAHOO.Btv && YAHOO.Btv.Runtime && YAHOO.Btv.Runtime.RegisterOnInit)
{
YAHOO.Btv.Runtime.RegisterOnInit(RunFromBody);
}
else
{
window.setTimeout(RunFromBody, 100);
}
} 
}
Run();
})();
