$("document").ready(function(){
	var aBoxes = $(".imgbox.spacer, .textbox");
	$(aBoxes).each(function(index){
		var strColor = aColorPool[index % aColorPool.length];
		
		setTimeout(function(){colorizeBox(strColor,index);},index*150);
	})
	function colorizeBox(p_strColor, index)
	{
		$(aBoxes[index]).animate({"backgroundColor": p_strColor}, 2000);
	}
});

