$(document).ready(function() {
	
	// SET STANDAARD FOTO
	var standaardFoto = $("#standaard_text");
	
	// LOOP DOOR DE HEADER ITEMS
	$(".header_item").each(function (index, domEle) {
		var eleid = $(this).attr('id');
		$(this).hover(
			function () {
				$("#"+eleid+"_text").show();
				standaardFoto.hide();
			},
			function() {
				$("#"+eleid+"_text").hide();
				standaardFoto.show();
			}
		)
	});
	
});
