$(document).ready(function() {
    var scriptTag = document.createElement("script");
    var random = Math.floor(Math.random() * 9999999).toString();
    scriptTag.id = "mixcnt" + random;
    scriptTag.setAttribute("type", "text/javascript");
    scriptTag.setAttribute("src", "http://train.nextfit.com/lab/web_data/new_year_resolutions??" + random);
    $("head")[0].appendChild(scriptTag);
});

function setResolutions(dataText) {
    var data = eval(dataText);
    $.each(data, function(i, item) {
        var firstName = item.user.user_account.first_name;
        firstName = firstName.charAt(0).toUpperCase() + firstName.substring(1).toLowerCase() + " ";
        var lastInitial = item.user.user_account.last_name.charAt(0).toUpperCase() + ".";
        
        $("<li>").html("<strong>" + firstName + lastInitial + "</strong><br/>" + item.musing.substring(0,300) + "<div>&nbsp;</div>").appendTo("#all-resolutions");
    });
} 