


jQuery(document).ready(function() {

	$('#getHome').click(function() {

		$("#navig").load('home.html');
		return false ;
	});

	$('#getMap').click(function() {

		$("#navig").load('plan.html');
		return false ;
	});

    $('#getSports').click(function() {

		$("#navig").load('sports.php');
		return false ;
	});

    $('#getPhotos').click(function() {

		$("#navig").load('photos.html');
		return false ;
	});

    $('#getEnglish').click(function() {

		$("#navig").load('home-eng.html');
		return false ;
		
	});
	
	    $('#getFrench').click(function() {

		$("#navig").load('home.html');
		return false ;

	});

});


