var News = {
	init: function() {
		$(News._init_);
	},
	_init_:function () {
		if ($('#Showcase .newsItems a').length > 1)
			$('#Showcase').everyTime(10000,News.autoPlay);
	},
	autoPlay: function() {
		var element = $('#Showcase .newsItems a:first-child');
		
		$(element).animate({marginTop: -18},{
			duration: 1000, queue: false, 
			complete: function() {
				$(element).css({marginTop: 0}).appendTo($(element).parent());
			}
		});
	}
}
News.init();
