$(document).ready(function($) {
	// Disable caching of AJAX responses */
	$.ajaxSetup ({
		cache: false
	});
	$(".organogram_button").click(function(){
		var person = $(this).attr("id");
		var profile = person + ".html";
		$("#modal-content").load('../About/Executive/'+ profile +'',function(){
			  $("#popup").modal();			    
		});
		return false;
	});
})
