$(function(){
    var s = window.location.search;
    var h = s.substring(s.indexOf('id=')+3);
    if (h) update(h);
});

function update(h) {
    Loading.show();
    Timeline.loadXML('./?o=xml;id=' + h, function(xml, url) {
        eventSource.loadXML(xml, url);
        var d = new Date(tl.getBand(0).getEventSource().getEarliestDate());
        d.setTime(d.getTime() + 6*60*60*1000);
        tl.getBand(0).setCenterVisibleDate(d);
        Loading.hide();
    });
}

