$(document).ready(function() {
	/*
	**	Activate the used menu item
	**	and set the pages they have to
	**	go to when you click on it.
	*/
	
	$('#'+activePage+'').addClass('active');
	
	$('#home').click(function() {
		window.location.href = 'index.php';
	});
	
	$('#webwinkel').click(function() {
		window.location.href = 'webwinkel.php';
	});
	
	$('#overons').click(function() {
		window.location.href = 'bedrijf.php?page=bedrijfsprofiel';
	});
	
	$('#cadeaubonnen').click(function() {
		window.location.href = 'cadeaubonnen.php';
	});
	
	$('#contactenroute').click(function() {
		window.location.href = 'contact.php';
	});
	
	$('#shoppingCart').click(function() {
		window.location.href = 'shoppingCart.php';
	});
});
