function changeImage()
{
  foto.src = list.options[list.selectedIndex].value;
}

function vorige()
{
	if(list.selectedIndex == 0)
	{
		list.selectedIndex = list.options.length-1;

	}
	else
	{
		list.selectedIndex--;
	}
	changeImage();
	var select = document.getElementById('list')
	document.getElementById('bijschrift').innerHTML = select.options[select.selectedIndex].text;

}
function volgende()
{
	if(list.selectedIndex == list.options.length-1)
	{
		list.selectedIndex = 0;

	}
	else
	{
		list.selectedIndex++;
	}
	changeImage();
	var select = document.getElementById('list')
	document.getElementById('bijschrift').innerHTML = select.options[select.selectedIndex].text;

}
$(document).ready(
	function(){
	$('#news').innerfade({
		animationtype: 'slide',
		speed: 750,
		timeout: 3000,
		containerheight: '1em'
	});			
});
