var files = new Array ('index.htm', 'outline.htm', 'time.htm', 'access.htm', 'expertise.htm', 'outsourcing.htm', 'money.htm', 'blended.htm', 'cbia.htm' , 'thanks.htm');
fileIndex=-1;

function goRing(direction)
	{
	curLoc = document.location.href;
	curLocArray = curLoc.split('/');
	curLoc = curLocArray[curLocArray.length-1];
	for(i=0;i<files.length;i++)
			{
			if(curLoc==files[i])
				{
				fileIndex = i;
				break;
				}
			}
	fileIndex = (fileIndex+direction+files.length) % files.length;	
	curLoc = files[fileIndex];
	document.location.href=curLoc;
	}
	
function goStart()
	{
	curLoc = document.location.href;
	curLoc = files[1];
	document.location.href=curLoc;
	}
	
 
