/**
* Rotate News
**/
function rotateNews() {
	var rotation = arguments;
	(function(){
		var stories = rotation;
		var current = 0;
		var newsArea = document.getElementById( 'newsArea');
		if ( newsArea)
			setInterval( function(){
				current++;
				if ( current >= stories.length)
					current = 0;
				var url = this.location.pathname + '?AJhomeTmpl=rnews&AJValue=' + stories[ current];
				simpleAjaxGet( url, newsArea);
			}, 4000);
	}());
}
