var t;

window.onload=function() {
	timedCount();
}
function timedCount(){
	t=setTimeout("timedCount()",4000)
	ajaxpage("/getimage.ajax.php", "slideshow");
}

function stopCount()
{
	if(t){ clearTimeout(t) }
}