Somewhere on the page...
/** Extend a JSON object in localStorage, as oppose to overwriting it.
*/
var localStoreExtend = function(namespace, jsonObj){
// Grab existing JSON object
var existingObj = JSON.parse(localStorage.getItem(namespace));