(function($) {

var ticker = function() {
	setTimeout(function(){
		$('#latest-news li:first').animate( {marginTop: '-100px'}, 800, function() {
			$(this).detach().appendTo('#latest-news ul').removeAttr('style');
		});
		ticker();
		}, 6000);
};
ticker();

})(jQuery);
