function menuSlide() {
	
	$('#Home').animate({ color: "#a7cc00" }, 500);
	
	jQuery("#Home").click(function(){
		$('#Home').animate({ color: "#a7cc00" }, 500);
		$('#Prijzen').animate({ color: "#1393a9" }, 500);
		$('#Feedback').animate({ color: "#1393a9" }, 500);
		$('#FAQ').animate({ color: "#1393a9" }, 500);
		$('#Stappen').animate({ color: "#1393a9" }, 500);
	});
	
	jQuery("#Prijzen").click(function(){
		$('#Home').animate({ color: "#1393a9" }, 500);
		$('#Prijzen').animate({ color: "#a7cc00" }, 500);
		$('#Feedback').animate({ color: "#1393a9" }, 500);
		$('#FAQ').animate({ color: "#1393a9" }, 500);
		$('#Stappen').animate({ color: "#1393a9" }, 500);
	});
	
	jQuery("#Feedback").click(function(){
		$('#Home').animate({ color: "#1393a9" }, 500);
		$('#Prijzen').animate({ color: "#1393a9" }, 500);
		$('#Feedback').animate({ color: "#a7cc00" }, 500);
		$('#FAQ').animate({ color: "#1393a9" }, 500);
		$('#Stappen').animate({ color: "#1393a9" }, 500);
	});
	
	jQuery("#FAQ").click(function(){
		$('#Home').animate({ color: "#1393a9" }, 500);
		$('#Prijzen').animate({ color: "#1393a9" }, 500);
		$('#Feedback').animate({ color: "#1393a9" }, 500);
		$('#FAQ').animate({ color: "#a7cc00" }, 500);
		$('#Stappen').animate({ color: "#1393a9" }, 500);
	});
	
	jQuery("#Stappen").click(function(){
		$('#Home').animate({ color: "#1393a9" }, 500);
		$('#Prijzen').animate({ color: "#1393a9" }, 500);
		$('#Feedback').animate({ color: "#1393a9" }, 500);
		$('#FAQ').animate({ color: "#1393a9" }, 500);
		$('#Stappen').animate({ color: "#a7cc00" }, 500);
	});
}

function feedbackMenuSlide() {	
	$('#createFeedback').animate({ color: "#a7cc00" }, 500);
	jQuery("#createFeedback").click(function(){
		$('#createFeedback').animate({ color: "#a7cc00" }, 500);
		$('#customers').animate({ color: "#1393a9" }, 500);
	});
	
	jQuery("#customers").click(function(){
		$('#createFeedback').animate({ color: "#1393a9" }, 500);
		$('#customers').animate({ color: "#a7cc00" }, 500);
	});
}
