var selection = '1';

function choose(id)
{		
	var e = document.getElementById('contentnews' + id);
	
	if(e.style.display == 'block')
	{
		if(selection != id)
		{
			e.style.display = 'none';
		}
	}
	else
	{
		e.style.display = 'block';
	}
	
	if(selection != id)
	{
		document.getElementById('contentnews' + selection).style.display = 'none';
		
		document.getElementById('news' + id).src = 'images/public.menu.'+ id + '.hover.jpg';
		document.getElementById('news' + selection).src = 'images/public.menu.'+ selection + '.jpg';
	}
	selection = id;
			  
}

setTimeout('change()',10000);

function change()
{
	selection1 = parseInt(selection) + 1;
	
	if(parseInt(selection1) >newscounter)
	{
		selection1 = 1;
	}
	
	document.getElementById('contentnews' + selection).style.display = 'none';
	document.getElementById('contentnews' + selection1).style.display = 'block';

	document.getElementById('news' + selection).src = 'images/public.menu.'+ selection + '.jpg';
	document.getElementById('news' + selection1).src = 'images/public.menu.'+ selection1 + '.hover.jpg';
	
	selection = selection1;
	
	setTimeout('change()',10000);
}
