// parse the JSON string

var JSON = 
{
    parse: function(jsonString)
    {
        return eval('(' + jsonString + ')');
    }
};

