var selection = '1';
var newscounter = 4;


function choose(id)
{		
	var e = document.getElementById('news' + id);
	
	if(e.style.display == 'block')
	{
		if(selection != id)
		{
			e.style.display = 'none';
		}
	}
	else
	{
		e.style.display = 'block';
	}
	
	if(selection != id)
	{
		document.getElementById('news' + selection).style.display = 'none';
		
		//document.getElementById('newsno' + selection).style.color = '#E55B17';
		//document.getElementById('newsno' + selectio1).style.color = '#000';
	}
	selection = id;
			  
}

setTimeout('change()',10000);

function change()
{
	selection1 = parseInt(selection) + 1;
	
	if(parseInt(selection1) >newscounter)
	{
		selection1 = 1;
	}
	
	document.getElementById('news' + selection).style.display = 'none';
	document.getElementById('news' + selection1).style.display = 'block';
	
	//document.getElementById('newsno' + selection).style.color = '#E55B17';
	//document.getElementById('newsno' + selection1).style.color = '#000';
	
	selection = selection1;
	
	setTimeout('change()',10000);
}
