﻿// JScript File
var i;
var t;

function startRotation() {
//    document.getElementById("mainTable").style.display = 'none';
    document.getElementById("mainImage").style.display='';
    document.getElementById("mainImage").src = "../_Screenshots/login.jpg";
    t = window.setTimeout('rotate(0)',1000);
}
function rotate(i) {
    if (i==0)
        document.getElementById("mainImage").src = "../_Screenshots/mainscreen.jpg";
    else if (i==1)
        document.getElementById("mainImage").src = "../_Screenshots/findarecord.jpg";
    else if (i==2)
        document.getElementById("mainImage").src = "../_Screenshots/invoicing.jpg";
    else if (i==3)
        document.getElementById("mainImage").src = "../_Screenshots/preformattedreports.jpg";
    else if (i==4) {
        //document.getElementById("mainImage").src = "_Screenshots/login.jpg";
        //i=-1;
        document.getElementById("mainImage").style.display = 'none';
        document.getElementById("mainTable").style.display = '';
        window.clearTimeout(t);
        return;
    }
    
    i++;
    t = window.setTimeout('rotate(' + (i) + ')',2000);
}


function mainImage_onclick(){
    window.clearTimeout(t);
    t = window.setTimeout('rotate(4)',250);
}
function mainImage_ondoubleclick(){
    window.clearTimeout(t);
    t = window.setTimeout('rotate(4)',250);
}
function mainImage_onkeypress(){
    window.clearTimeout(t);
    t = window.setTimeout('rotate(4)',250);
}