$(document).ready(function() {
	//Load the navbar
	$.ajax({
		url: 'inc/navbar.inc',
		success: function(response) {
			$('#navbar').html(response);
		}
	});
	//Load the footer
	$.ajax({
		url: 'inc/footer.inc',
		success: function(response) {
			$('#footer').html(response);
		}
	});
});
