$(function()
{
	var ticker = function()
	{
		setTimeout(function(){
			$('#ticker li:first').animate( {marginTop: '-135px'}, 1500, function()
			{
				$(this).detach().appendTo('ul#ticker').removeAttr('style');	
			});
			ticker();
		}, 7000);
	};
	ticker();
});


$(function()
{
	var ticker2 = function()
	{
		setTimeout(function(){
			$('#ticker2 li:first').animate( {marginTop: '-135px'}, 1500, function()
			{
				$(this).detach().appendTo('ul#ticker2').removeAttr('style');	
			});
			ticker2();
		}, 7000);
	};
	ticker2();
});
