this_ttm = -1;
max_ttm=6;
timeout=8000;

function select_object(object) {
	if(!document.all) {
		var obj=document.getElementById(object);
	} else {
		eval('var obj=document.all.'+object+';');
	}

	return obj;
}

function next_quote() {
	obj = select_object("ttm"+this_ttm);
	obj.style.display = "none";
	this_ttm = this_ttm+1;
	if (this_ttm > max_ttm) { this_ttm = 0; }
	obj = select_object("ttm"+this_ttm);
	obj.style.display = "inline";
	fader = setTimeout("next_quote()",timeout);
}

function ttm_slideshow_start() {
	this_ttm = 5;	
	fader = setTimeout("next_quote()",timeout);
}

