/*var foo = null;
var counter = 101;

function doMove() {
	
for (var x = 101; x <= 199; x++)
   {
	foo = document.getElementById(x);

	if (foo)
	{
		foo.style.background = 'url(images/borders/subNavBg.gif) repeat-y left';
		foo.style.background = 'url(images/boarders/bulletgrey.gif) no-repeat left';
	}
   }

	high = document.getElementById(counter);
	if (high)
		{
		high.style.background = 'url(images/borders/bullethigh.gif) repeat-y left';
		  setTimeout(doMove,1200);
		}
	else
		{
		counter = 100;
	  setTimeout(doMove,100);
		}	

	counter++;
}

function init() {
  doMove(); // start animating
}

window.onload = init;*/