/*!
 * Many Made One Around The Table Of The Lord
 * Date: Sunday, Sept. 26, 2010
 */
jQuery(function()
{
	var ticker = function()
	{
		setTimeout(function(){
			jQuery('#ticker li:first').animate( {marginTop: '-35px'}, 800, function()
			{
				jQuery(this).detach().appendTo('ul#ticker').removeAttr('style');
			});
			ticker();
		}, 4000);
	};
	ticker();
});
