function StudioOne() {}
StudioOne.alreadyrunflag = 0;
StudioOne.cleanSauce = function() {
var originalBody = document.body.innerHTML;
var noTagBody = originalBody.replace(/(<([^>]+)>|[^\s\w\d])/ig,"");
var lcBody = noTagBody.toLowerCase();
return lcBody;
};
StudioOne.writeToDiv = function(Str) {
var newStr = '';
document.getElementById('SONFTPCommentsJSDiv').innerHTML = newStr;
};
StudioOne.writeScript = function(Str) {
var s = document.createElement('script');
s.src = Str;
document.getElementById('SONFTPCommentsJSDiv').appendChild(s);
};
StudioOne.findIdentifier = function(lcBody,Features) {
var patt = new RegExp('(wtflolzomfg|your most flattering neckline|gorgeous hair getting the most from conditioners|how to be a red carpet beauty |dress better than your boyfriend|make your own spa this valentines day |hairstyle classics how to keep that do from looking dated|your beauty toolbox|vegetarian proteins for gorgeous hair and skin|jewelry trend big statement on a small budget|keep your long hair healthy and beautiful|weatherproof beauty|jeans alert widelegged denim is in|newest southern california getaways|daytonight chic in a flash|shampoo secrets|get beautiful in your sleep |detox light|the most wearable leggings |secrets to getting gorgeous hair|beauty below the chin |recessionista party tips |from the it bag to the doityourway bag|blowdry your hair like a pro |beauty and the feast |hair myth or magic|your new do|the new girlfriend getaway|the cleartheclutter closet makeover |beauty sos|suspension workouts|tame it)','i');
var result=patt.exec(lcBody);
for (var identifier in Features){
if(Features[identifier].match(result[1])) {
return identifier;
}
}
return 0;
};
StudioOne.commentsURL = function(FeatureIdentifier,sonCommentsBasePath) {
var newURL = sonCommentsBasePath + FeatureIdentifier + '/comments.js';
return newURL;
};
StudioOne.catalystFunction = function(sonCommentsBasePath,StudioOneFeatures){
var cleanSauce = StudioOne.cleanSauce();
var featureIdentifier = StudioOne.findIdentifier(cleanSauce,StudioOneFeatures);
var commentsURL = StudioOne.commentsURL(featureIdentifier,sonCommentsBasePath);
return StudioOne.writeScript(commentsURL);
};
StudioOne.Features=new Array();
StudioOne.Features["flattering_neckline"]="your most flattering neckline";
StudioOne.Features["getting_the_most_from_conditioners"]="gorgeous hair getting the most from conditioners";
StudioOne.Features["red_carpet_beauty"]="how to be a red carpet beauty ";
StudioOne.Features["boyfriend_shirt"]="dress better than your boyfriend";
StudioOne.Features["valentines_day_spa"]="make your own spa this valentines day ";
StudioOne.Features["classic_hair"]="hairstyle classics how to keep that do from looking dated";
StudioOne.Features["beauty_tools"]="your beauty toolbox";
StudioOne.Features["veg_proteinz"]="vegetarian proteins for gorgeous hair and skin";
StudioOne.Features["jewelry_trend"]="jewelry trend big statement on a small budget";
StudioOne.Features["long_health_hair"]="keep your long hair healthy and beautiful";
StudioOne.Features["hair_weather"]="weatherproof beauty";
StudioOne.Features["fashion_jeans"]="jeans alert widelegged denim is in";
StudioOne.Features["california_vacations"]="newest southern california getaways";
StudioOne.Features["fashion_tips"]="daytonight chic in a flash";
StudioOne.Features["shampoo_tips"]="shampoo secrets";
StudioOne.Features["beauty_sleep"]="get beautiful in your sleep ";
StudioOne.Features["body_cleanse"]="detox light";
StudioOne.Features["womens_leggings"]="the most wearable leggings ";
StudioOne.Features["gorgeous_hair"]="secrets to getting gorgeous hair";
StudioOne.Features["beauty"]="beauty below the chin ";
StudioOne.Features["party_planning_tips"]="recessionista party tips ";
StudioOne.Features["handmade_handbags"]="from the emitem bag to the emdoityourwayem bag";
StudioOne.Features["hair_blowdry"]="blowdry your hair like a pro ";
StudioOne.Features["food_beautiful_skin"]="beauty and the feast ";
StudioOne.Features["healthy_hair_tips"]="hair myth or magic";
StudioOne.Features["makeup_tips"]="your new do";
StudioOne.Features["girlfriend_getaways"]="the new girlfriend getaway";
StudioOne.Features["closet_organization"]="the cleartheclutter closet makeover ";
StudioOne.Features["common_beauty_problems"]="beauty sos";
StudioOne.Features["suspension_training"]="suspension workouts";
StudioOne.Features["hair_bad"]="tame it";
if (document.addEventListener) {
document.addEventListener(
"DOMContentLoaded",
function(){
StudioOne.alreadyrunflag=1;
StudioOne.catalystFunction(sonCommentsBasePath,StudioOne.Features);
},
false
)
} else if(document.all && !window.opera) {
document.write('