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|secrets to speed cooking|5 cheap and easy decorating ideas|top 5 ways to never waste food again |creative and cheap valentines surprises|easy homevalue boosters|postholiday deals and steals|stock the perfect pantry|straighten up in an instant|take the germ quiz|think savory not sweet|holiday decorations on a budget|the stressfree lowcost party planner|holiday greetings for less|giving kids a creative edge|new twists on family game night|the 10minute speed clean|bring out your inner chef|top 5 spookiest halloween ideas|sunday supperor any other time|the right job at the right time|filling the memory bank|the perfect potluck|the cleaning cheat sheet |to market to market|be a clean freak for less|the great neighborhood cookoff|ready set napkins|take it outside|6 ways to save family vacations|6 ways to save reinventing yourself |6 ways to save big celebrations|money for something|the life of the party)','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["speed_cooking_tips"]="secrets to speed cooking";
StudioOne.Features["redecorate_on_the_cheap"]="5 cheap and easy decorating ideas";
StudioOne.Features["waste_food"]="top 5 ways to never waste food again ";
StudioOne.Features["valentines_food_gift"]="creative and cheap valentines surprises";
StudioOne.Features["home_value"]="easy homevalue boosters";
StudioOne.Features["after_holiday_deals"]="postholiday deals and steals";
StudioOne.Features["perfect_pantry"]="stock the perfect pantry";
StudioOne.Features["straighten_up_in_an_instant"]="straighten up in an instant";
StudioOne.Features["germs"]="take the germ quiz";
StudioOne.Features["Christmas_food"]="think savory not sweet";
StudioOne.Features["holiday_decorations"]="holiday decorations on a budget";
StudioOne.Features["holiday_party_ideas"]="the stressfree lowcost party planner";
StudioOne.Features["holiday_greetings"]="holiday greetings for less";
StudioOne.Features["kids_creative"]="giving kids a creative edge";
StudioOne.Features["family_game_night"]="new twists on family game night";
StudioOne.Features["house_cleaning"]="the 10minute speed clean";
StudioOne.Features["cooking_fun"]="bring out your inner chef";
StudioOne.Features["halloween_ideas"]="top 5 spookiest halloween ideas";
StudioOne.Features["sunday_supper"]="sunday supperor any other time";
StudioOne.Features["right_job_right_time"]="the right job at the right time";
StudioOne.Features["filling_memory_bank"]="filling the memory bank";
StudioOne.Features["perfect_potluck"]="the perfect potluck";
StudioOne.Features["cleaning-cheat-sheet"]="the cleaning cheat sheet ";
StudioOne.Features["farmers_market"]="to market to market";
StudioOne.Features["home_cleaning"]="be a clean freak for less";
StudioOne.Features["neighborhood_cook_off"]="the great neighborhood cookoff";
StudioOne.Features["table_manners"]="ready set napkins";
StudioOne.Features["party_ideas_outdoors"]="take it outside";
StudioOne.Features["vacation_deals"]="6 ways to save family vacations";
StudioOne.Features["skills_training"]="6 ways to save reinventing yourself ";
StudioOne.Features["6_ways_to_save"]="6 ways to save big celebrations";
StudioOne.Features["money_for_something"]="money for something";
StudioOne.Features["life_of_the_party"]="the life of the party";
if (document.addEventListener) {
document.addEventListener(
"DOMContentLoaded",
function(){
StudioOne.alreadyrunflag=1;
StudioOne.catalystFunction(sonCommentsBasePath,StudioOne.Features);
},
false
)
} else if(document.all && !window.opera) {
document.write('