$(function() {
	$.fn.ticker = function(settings) {
		settings = jQuery.extend({
			interval: 8000,
			speed: 'slow'
		}, settings);

		var informations = $(this).children();
		var count = 0;

		if (informations.length < 2) return false;
		informations.each(function(i) {
			if (i != 0) $(this).hide();
		});

		setInterval(function() {
			informations.eq(count).fadeOut(settings.speed, function() {
				count++;
				if (count == informations.length) count = 0;
				informations.eq(count).fadeIn(settings.speed);
			});
		}, settings.interval);
	};
});
