$(document).ready(function() {
	$('#nav li').bind('click', function(event) {
		event.preventDefault();
		$('#nav li').removeClass('active');
		$(this).addClass('active');
		if (this.id == 'home') {
			$('#content').load('content/home.html');
		}
		else if (this.id == 'description') {
			$('#content').load('content/description.html');
		}
		else if (this.id == 'structure') {
			$('#content').load('content/structure.html');
		}
		else if (this.id == 'targetgroup') {
			$('#content').load('content/who.html');
		}
		else if (this.id == 'objectives') {
			$('#content').load('content/objectives.html');
		}
		else if (this.id == 'people') {
			$('#content').load('content/people.html');
		}
		else if (this.id == 'application') {
			$('#content').load('content/application.html');
		}
		else if (this.id == 'certificate') {
			$('#content').load('content/certificate.html');
		}
		else if (this.id == 'tuition') {
			$('#content').load('content/tuition.html');
		}
		else if (this.id == 'tarragona') {
			$('#content').load('content/tarragona.html');
		}
		

});

});
	
