
$(function(){
 		var page = 'bio-text';
 	
 	var pge = page.replace(/g/,'');	
	// Open the xml file
	$.ajax({
        type: "GET",
		url: "content/"+ page +".html",
		dataType: "html",
		success: function(cnt) {
	 		$('#bioContentDiv').html(cnt);
	 	}
	});
	
	
});	 


	 