$(document).ready(function(){
  var StandaardTitle = $('.link:first').attr('title');
  $('#title').text(StandaardTitle);	

	$('#navigation_home li').mouseover(function(){
		var Index = $(this).index();
		var Title = $('#navigation_home .link').eq(Index).attr('title');
		$('#container .img').eq(Index).fadeIn();
		$('#title').text(Title);
	});
	
	$('#navigation_home li').mouseout(function(){
		var Index = $(this).index();
		$('#container .img').eq(Index).stop(true, true).delay(250).fadeOut();
		//standaard titel weer weergeven
		$('#title').text(StandaardTitle);
	});
});

