	var i = 1;
	function scto(cnt)
	{
		var scrFactor = 80;
		x = cnt;
		scrFactor = (1 - totalLinks/150) * scrFactor;
		//if (x > 25) {scrFactor = ();}
		if (x > 5)
		{
			x = (x - 6) * scrFactor + 300 //80 for each over 6 with a plus 300 for header
			window.scrollTo(0,x);
		}
		//about 60 each.  8th starts to notShow
		//  so on 7th time to start scrolling
		//  for each scroll by 80i + 300    80 incase of descriptions
		//  If there are a lot of links, assume less descriptions and decrease the scroll factor
	}

