var performer = 'Scott';

function getDemandHTML(demand) {
    if (demand.location.match(/metro area$/)) {
        demand.location = 'the ' + demand.location;
    }
    var others = '';
	demand.name = (demand.name == 'evdb') ? 'A fan' : demand.name;
    if (demand.members > 1) {
        others = demand.members - 1
        others = ' (and ' + others + ' other ' + ((others == 1) ? 'person':'') + ')';
    }
    var html = '<strong>' + demand.name + '</strong>' + others;
    html += ' demands ' + performer;
    html += ' come to <strong>' + demand.location + '</strong>';
    return html;
}

if (eventful_data.status == 'ok') {
    evhtml = '<li>' + getDemandHTML(eventful_data.demands[0]) + '</li>';
    evhtml += '<li>' + getDemandHTML(eventful_data.demands[1]) + '</li>';
	evhtml += '<li>' + getDemandHTML(eventful_data.demands[2]) + '</li>';
}