var main_timer = 0;
should_loop = 1;

window.onload = function() {
    main_timer = window.setTimeout("play_pause('play')", 2000);
}

function hideInfo() {
    document.getElementById("infotext").setAttribute("className", "hide_content");
    document.getElementById("infotext").setAttribute("class", "hide_content");
    
    document.getElementById("questionsubmit").setAttribute("className", "show_content");
    document.getElementById("questionsubmit").setAttribute("class", "show_content");
}

function showInfo() {
    document.getElementById("questionsubmit").setAttribute("className", "hide_content");
    document.getElementById("questionsubmit").setAttribute("class", "hide_content");
    
    document.getElementById("infotext").setAttribute("className", "show_content");
    document.getElementById("infotext").setAttribute("class", "show_content");
}

function buttonClicked(button) {
    window.setTimeout("buttonClickedChange()", 50);
}

function buttonClickedChange() {
    document.getElementById("submitbutton").setAttribute("value","Submitting Question...");
    document.getElementById("submitbutton").setAttribute("disabled","true");
}

function resetClicked(button) {
    document.getElementById("target").innerHTML = "<input name='submit' type='submit' value='Submit' onClick='buttonClicked()' id='submitbutton'>";
}