$(document).ready(function(){
	var i = 1;
	window.setInterval(function() {			
		var numNodes = $('#scrollitems a').length;
		
		if (i < numNodes) {
			$('#scrollitems').animate(
				{'top': -i*18 }, "normal"
			)
			i++;
		} else {
			$('#scrollitems').animate(
				{'top': 1 }, "normal"
			)
			i = 1;			
		}
	}, 4000);
});