var $j = jQuery.noConflict();
$j(function()
{
	var ticker = function()
	{
		setTimeout(function(){
			$j('#ticker li:first').animate( {marginTop: '-50px'}, 600, function()
			{
				$j(this).detach().appendTo('ul#ticker').removeAttr('style');	
			});
			ticker();
		}, 4000);
	};
	ticker();
});
