jQuery(function()
{
	var ticker = function()
	{
		setTimeout(function(){
			jQuery('#ticker li:first').animate( {marginLeft: '-1000px'}, 1250, function()
			{
				jQuery(this).detach().appendTo('ul#ticker').removeAttr('style');	
			});
			ticker();
		}, 4000);
	};
	ticker();
});
