var items = new Array();
items[0]='Something rescued from slow-loading sites.';
items[1]='AKA Restless Mouse Syndrome';
items[2]='This particular set was found at the Xerox Site--waiting for a pdf file to load.';
items[3]='The images were captured using IrfanView set to 5 second automatic capture.';
items[4]='In those 5 seconds you get kinda tricky with the rodent.';
items[5]='The End.<br /><a href="http://www.irfanview.com">IrfanView</a> is by Irfan Skiljan, Graduate of the Vienna University of Technology.';

items.cItem=-1;

function nextOne(tid){
 if (items[items.cItem+1]) items.cItem++;
 else items.cItem=0;
 el(tid).innerHTML=items[items.cItem];
}

function el(tid) {
 return document.getElementById(tid);
}