// This controls our modal dialogue on the About Us page
/*
	Required: Jquery
*/
jQuery(document).ready(function($) {
		//$(document).ready(function() {
			// Dialog			
				$('#dialog_d, #dialog_s').dialog({
					autoOpen: false,
					width: 600,
					modal:true,
					
				});
				
				// Dialog Link
				$('#bios_link_d').click(function(){
					$('#dialog_d').dialog('open');
					return false;
				});
				// Dialog Link
				$('#bios_link_s').click(function(){
					$('#dialog_s').dialog('open');
					return false;
				});
		
}); // end WordPress special doc ready
