function changeGraph(newsrc) {
    var graph = document.getElementById('graph');
    var waitanim = document.getElementById('wait');
    waitanim.removeAttribute('class');
    graph.setAttribute('src', newsrc);
}
function loadedGraph() {
    var waitanim = document.getElementById('wait');
    waitanim.setAttribute('class', 'waithidden');
}
