$('.navigationButton').click(function(event){
	
	var page = $(this).html();
		
	$.get(page+'/index.php', { post: 'true' },
	
		function(data){
			
				$('#contentMain').html(data);
				
  			});
  			
	$('#contentHeader').html(page);
	// Load the page name into header
	
	return false;
	
});
