$(document).ready(function() {
		$(function() {
			$('#home').hover(function(){
				$('#text-titel span.titel').hide();
				$("#text-titel span.hover").html("<h2>Homepagina</h2>");
			}, function(){
				$("#text-titel span.hover").html("<h2></h2>");
				$("#text-titel span.titel").css({'display' : 'block'});
			});
		});
		
		$(function() {
			$('#overons').hover(function(){
				$('#text-titel span.titel').hide();
				$("#text-titel span.hover").html("<h2>Over Ons</h2>");
			}, function(){
				$("#text-titel span.hover").html("<h2></h2>");
				$("#text-titel span.titel").css({'display' : 'block'});
			});
		});
		
		$(function() {
			$('#tarieven').hover(function(){
				$('#text-titel span.titel').hide();
				$("#text-titel span.hover").html("<h2>De Tarieven</h2>");
			}, function(){
				$("#text-titel span.hover").html("<h2></h2>");
				$("#text-titel span.titel").css({'display' : 'block'});
			});
		});
		
		$(function() {
			$('#deauto').hover(function(){
				$('#text-titel span.titel').hide();
				$("#text-titel span.hover").html("<h2>De Auto</h2>");
			}, function(){
				$("#text-titel span.hover").html("<h2></h2>");
				$("#text-titel span.titel").css({'display' : 'block'});
			});
		});
		
		$(function() {
			$('#ervaringen').hover(function(){
				$('#text-titel span.titel').hide();
				$("#text-titel span.hover").html("<h2>Ervaringen van Klanten</h2>");
			}, function(){
				$("#text-titel span.hover").html("<h2></h2>");
				$("#text-titel span.titel").css({'display' : 'block'});
			});
		});
		
		$(function() {
			$('#aanmelden').hover(function(){
				$('#text-titel span.titel').hide();
				$("#text-titel span.hover").html("<h2>Aanmelden voor Rijlessen</h2>");
			}, function(){
				$("#text-titel span.hover").html("<h2></h2>");
				$("#text-titel span.titel").css({'display' : 'block'});
			});
		});
		
		$(function() {
			$('#contact').hover(function(){
				$('#text-titel span.titel').hide();
				$("#text-titel span.hover").html("<h2>Contact Opnemen");
			}, function(){
				$("#text-titel span.hover").html("<h2></h2>");
				$("#text-titel span.titel").css({'display' : 'block'});
			});
		});
	});
