oldNewsId = 1;
function ChangeNews(id) {
	document.getElementById('news'+oldNewsId).style.display = "none";
	document.getElementById('news'+id).style.display = "";
	
	oldNewsId = id;
}
	
	oldId = 1;
	function SliderActive(id) {
		document.getElementById('sNav'+oldId).className = "passive";
		document.getElementById('sNav'+id).className = "active";
		
		oldId = id;
	}
	
	var StartNum = 1;
	var Timer;
	var DelayTime = 5000;
	function autoSlide() {
		var MaxNum = 5;
		ChangeNews(StartNum);
		SliderActive(StartNum);
		StartNum=StartNum+1;
		if(StartNum == MaxNum) { StartNum= 1; }
		Timer=setTimeout("autoSlide()",DelayTime);											
	}
	
	function StopTimer(images) {
		clearTimeout(Timer);
		setTimeout("autoSlide('"+images+"')", 10000);
	}
