(function ($) {
	/**
	LineScroller = {
		count: 0,
		index:0,
		set: null,
		startWith: function (jqSet)
		{
			this.count = jqSet.length;
			jqSet.each(function () { $(this).hide() });
			jqSet.first().show();
			
			this.index = 0;
			this.set = jqSet;
			
			window.setInterval(LineScroller.step, 6000);
		},
		
		step: function ()
		{
			LineScroller.set.eq(LineScroller.index).fadeOut('fast');
			
			if (++LineScroller.index >= LineScroller.count) {
				LineScroller.index = 0;
			}
			
			LineScroller.set.eq(LineScroller.index).fadeIn('fast');
		}
	};
	**/
})(jQuery);
