$(document).ready(function(){
	$('#tongloudemans').mouseover(function(){
		$('p#tongloudemans_underscore').text('Ton Gloudemans');
	}).mouseout(function(){
		$('p#tongloudemans_underscore').text('');
	})
	$('#erikabbink').mouseover(function(){
		$('p#erikabbink_underscore').text('Erik Abbink');
	}).mouseout(function(){
		$('p#erikabbink_underscore').text('');
	})
	$('#tonhal').mouseover(function(){
		$('p#tonhal_underscore').text('Ton Hal');
	}).mouseout(function(){
		$('p#tonhal_underscore').text('');
	})
	$('#benrozema').mouseover(function(){
		$('p#benrozema_underscore').text('Ben Rozema');
	}).mouseout(function(){
		$('p#benrozema_underscore').text('');
	})
	$('#barttuinman').mouseover(function(){
		$('p#barttuinman_underscore').text('Bart Tuinman');
	}).mouseout(function(){
		$('p#barttuinman_underscore').text('');
	})
	}
)
