
/*
 * newsarea javascript
 */

var total = 0;
var num = 0;

function newsF(){
	
	if( num < (total - 1)){
		num++;
	} else {
		num = 0;
	}
	
	$('div.newswin', this.group).each(function(){
		$(this).hide();
	}).filter(':eq('+num+')').fadeIn("slow");
	
}

