$(document).ready(function() {

	//start box linking
	$('.start-box').css({
		'cursor': 'pointer'
	});

	$('.left').click(function () {
		window.location = '/affarssystem/';
	});

	$('.center').click(function () {
		window.location = '/infrastruktur/';
	});

	$('.right').click(function () {
		window.location = '/telefoni/';
	});

});