var total = 0;
var num = 0;

$(function(){
	$('dl.information', this.group).each(function(){
		$(this).hide();
		total++;		
	}).filter(':eq(0)').fadeIn("view");
	if(total > 1){
		setInterval(headline,3000);
	}
});

function headline(){
	
	if( num < (total - 1)){
		num++;
	} else {
		num = 0;
	}
	$('dl.information', this.group).each(function(){
		$(this).hide();
	}).filter(':eq('+num+')').fadeIn("view");	
}
