$(document).ready(function(){
	$('DIV.visitortyperow DIV.red').click(function(){
		location.href = 'ondernemer/';
	});
	
	$('DIV.visitortyperow DIV.blue').click(function(){
		location.href = 'hrmanager/';
	});
	
	$('DIV.visitortyperow DIV.lightblue').click(function(){
		location.href = 'freelancer/';
	});
	
	$('DIV.visitortyperow DIV.green').click(function(){
		location.href = 'international/';
	});
});