function newsDown()
{
	var i = 0, index = 0;
	var divList = $('div.news_item_container'); 
    divList.each ( function () {
    	i++;
    	if (i == divList.length) {
    		return false;
    	}
    	if (this.style.display != 'none') {
    		index = i;
    		$(divList.get(index)).fadeIn("fast");
    		$(this).hide();
    		return false;
    	}
    });
}

function newsUp()
{
	var divList = $('div.news_item_container');
	var i = divList.length;
	for (j = divList.length - 1; j > 0; j--) {
		if ($(divList[j]).css('display') == 'block') {
    		index = j - 1;
    		$(divList.get(index)).fadeIn("fast");
    		$(divList[j]).hide();
    		return false;
    	}
	}
}
