Job description
Duke Regional Hospital has served Durham, Orange, Person, Granville and Alamance counties and the surrounding communities for nearly 40 years. With more than 1,900 employees, its focus is on providing outstanding medical care with compassionate, personalized service in a comfortable community hospital setting. Duke Regional Hospital has 369 inpatient beds and offers a comprehensive range of medical, surgical and diagnostic services, including orthopedics, weight-loss surgery, women's services, and heart and vascular services, and also offers care at the Duke Rehabilitation Institute and Davis Ambulatory Surgical Center. In fiscal year 2018, Duke Regional Hospital admitted 16,299 patients and had 165,953 outpatient visits in fiscal year 2017.
U.S. News & World Report ranked Duke Regional Hospital as #10 in North Carolina and #4 in the Raleigh-Durham area for 2018-19.
Occ Summary
Emergency Medicine Physicians are clinicians who provide clinical care and treatment for patients presenting at Duke Regional Hospital's Emergency Department.
NOTE: This is a nocturnist position.
Work Performed
- Engage in direct patient care activities.
- Provide medical assessment, diagnostic determination and clinical management necessary to ensure appropriate clinical disposition of Emergency Department patients.
- Direct contact and consultation with patient, patient’s family members, friends, advocates and other to ensure effective communication of patient status and care plans.
- Accurate and timely completion of all clinical and professional records and documentation to assure compliance with local, state and federal regulatory, licensure and accreditation requirements.
- Work to create a positive work culture within the department and cross-departmental teams.
- Communicate with consulting providers as appropriate to facilitate necessary ongoing care and treatment of patients.
- Provide oversight, direction and guidance to Residents, PA Students and department APPs.
Required Qualifications at this Level
- Work requires a MD or DO and completion of advanced graduate medical education in Emergency Medicine with board eligibility or board certification in Emergency Medicine.
- Training experiences as mandated by the American Board of Emergency Medicine for board eligibility/certification required.
- Experience in emergency medicine practice preferred.
- Physician will maintain a current, unrestricted license to practice medicine in the state of North Carolina, federal and state prescriptive authority and will obtain and maintain board certification by the American Board of Emergency Medicine in accordance with DRH Medical Staff Bylaws.
- Ability to work with others in a professional, cooperative and collaborative manner.
- Strong written and verbal communication skills.
Duke is an Affirmative Action/Equal Opportunity Employer committed to providing employment opportunity without regard to an individual's age, color, disability, gender, gender expression, gender identity, genetic information, national origin, race, religion, sex, sexual orientation, or veteran status.
Duke aspires to create a community built on collaboration, innovation, creativity, and belonging. Our collective success depends on the robust exchange of ideas—an exchange that is best when the rich diversity of our perspectives, backgrounds, and experiences flourishes. To achieve this exchange, it is essential that all members of the community feel secure and welcome, that the contributions of all individuals are respected, and that all voices are heard. All members of our community have a responsibility to uphold these values.
Essential Physical Job Functions: Certain jobs at Duke University and Duke University Health System may include essentialjob functions that require specific physical and/or mental abilities. Additional information and provision for requests for reasonable accommodation will be provided by each hiring department.
Share this job with your network:
Gallery title
);
// add background image
if (jobBackgroundImage.length > 0) {
$('.main-header').css({
'width': '100%',
'height': '220px',
background: 'url("' + jobBackgroundImage + '") center bottom no-repeat',
'background-size': 'cover',
display: 'flex',
'justify-content': 'center',
'align-items': 'center',
});
}
// add main logo
if (jobLogo === undefined) {
$('.main-header-school-logo-wrapper').remove();
$('.main-header').html('
' + jobTitle + '
')} else if (jobLogo.length > 0) {
$('.main-header-school-logo').attr('src', jobLogo);
}
// add title
if (jobTitle.length > 0) {
$('.rss-feed-title').text(jobTitle).css({
'display': 'block'
});
$('.learn-more-university-name').text(jobTitle);
$('.gallery-main-title').text(jobTitle + ' Gallery');
$('.aside-main-university-name').append(jobTitle);
}
// add description
if (jobDescription.length > 0) {
$('.rss-feed-description-container').html(jobDescription).css({
'display': 'block'
});
var readMoreArrowDown =
'';
$('.rss-feed-description .rss-feed-description-container').each(function () {
$(this).find('p:nth-of-type(2)').nextAll().each(function () {
$(this).css('display', 'none');
});
$(this).siblings().css('display', 'none');
$(this).find('p:nth-of-type(2)').after(
});
$('.read-more-link-description').on('click', function (event) {
event.preventDefault();
$('.rss-feed-description .rss-feed-description-container').each(function () {
$(this).find('p:nth-of-type(2)').nextAll().each(function () {
$(this).fadeIn('slow', function () {});
});
$(this).siblings().fadeIn('slow', function () {});
});
$('.read-more-link-description').remove();
});
} else {
$('.main-container-job-information-container.employer-profile-container').css({
'display': 'none'
});
}
// add Diversity text
if (diversityDescription.length > 0) {
var diversityDescriptionTrimmed = diversityDescription.trim();
var diversityDescriptionParsed = '
' + diversityDescriptionTrimmed.split('\n').filter( function (string) { return string.length > 0; }).join('
') + '
';$('.rss-diversity-description-container').html(diversityDescriptionParsed);
var readMoreArrowDown =
'';
$('.rss-diversity-description .rss-diversity-description-container').each(function () {
$(this).find('p:nth-of-type(2)').nextAll().each(function () {
$(this).css('display', 'none');
});
$(this).siblings().css('display', 'none');
$(this).find('p:nth-of-type(2)').after(
});
$('.read-more-link-diversity').on('click', function (event) {
event.preventDefault();
$('.rss-diversity-description .rss-diversity-description-container').each(function () {
$(this).find('p:nth-of-type(2)').nextAll().each(function () {
$(this).fadeIn('slow', function () {});
});
$(this).siblings().fadeIn('slow', function () {});
});
$('.read-more-link-diversity').remove();
});
} else {
$('.main-container-job-information-container.diversity-profile-container').css({
'display': 'none'
});
}
// add source to iframe
$('.compensation-survey-data-container iframe').attr('src',
'https://www.insidehighered.com/school-aaup/' + IPEDID + '#block-system-main').attr(
'scrolling', 'no');
// load state map
if (jobState.length > 0) {
$('.recruiter-state-map').attr('src',
'http://www.insidehighered.com/sites/default/server_files/media/Schools%20page/' +
states[jobState] + '.png');
// add city and state in map text
if (jobCity.length > 0 && jobState.length > 0) {
$('.aside-main-university-location').append(jobCity + ', ' + states[jobState]);
}
} else {
$('.recruiter-state-map, .aside-main-university-location').css('display', 'none');
}
// add gallery
// Load Slick slider files
function getScript(url, success) {
var script = document.createElement('script');
script.src = url;
var head = document.getElementsByTagName('head')[0];
var completed = false;
script.onload = script.onreadystatechange = function () {
if (!completed && (!this.readyState || this.readyState == 'loaded' || this.readyState ==
'complete')) {
completed = true;
success();
script.onload = script.onreadystatechange = null;
head.removeChild(script);
}
};
head.appendChild(script);
}
// load JS file and then execute the rest
getScript('https://www.insidehighered.com/school-pages-galleries/owl-carousel.js', function () {
getScript('https://www.gstatic.com/firebasejs/5.5.1/firebase.js', function () {
// main CSS
var sliderCSSLocation =
'https://www.insidehighered.com/school-pages-galleries/owl-carousel.css';
// theme CSS
var sliderCSSTheme =
'https://www.insidehighered.com/school-pages-galleries/owl-carousel-theme.css';
// modify new element
$('.college-gallery-container').css({
'display': 'inline-block',
'width': '100%'
});
// inject CSS files
$('').appendTo(
'head');
$('').appendTo(
'head');
// inject slider style
$('head').append(
''
);
// Firebase config
var config = {
apiKey: "AIzaSyDGuI_S5O8YFyKH3sQOjwnN-CNjZbkVhaQ",
authDomain: "schoolresearchtool.firebaseapp.com",
databaseURL: "https://schoolresearchtool.firebaseio.com",
projectId: "schoolresearchtool",
storageBucket: "schoolresearchtool.appspot.com",
messagingSenderId: "7923963095"
};
// initialize Firebase with config
var app = firebase.initializeApp(config);
// connect to database
var db = app.database().ref('colleges');
// get data
db.orderByChild('UnitID').equalTo(FirebaseIPEDID).on('value', function (
snapshot) {
if (snapshot.val() !== null) {
// for each result
snapshot.forEach(function (data) {
if (typeof (data.val().Images) !== 'undefined') {
// search for images
universityImages = data.val().Images.length;
universityImagesElement = [];
// set loop to false by default
var multipleItems = false;
// if university haves images
if (universityImages > 0) {
if (universityImages > 1) {
// if we have more than one element set loop to true
multipleItems = true;
}
for (var i = 0; i " + data.val().Images[i].caption +
"";
}
// check for university source
if (data.val().URL == null) {
var universitySource = '';
} else {
var universitySource = data.val().Name;
}
// check for university name
if (data.val().Name == null) {
var universityName = '';
} else {
var universityName = data.val().Name;
}
universityImagesElement +=
"
";}
// insert slider markup
$(
"
" + universityImagesElement + "
").appendTo('.college-gallery-container');
// slider options
var owlCarousel = $('.owl-carousel').owlCarousel({
items: 1,
loop: multipleItems,
lazyLoad: false,
margin: 10,
autoHeight: true,
responsive: {
0: {
nav: false
},
1024: {
nav: true,
navText: [
'',
''
]
}
}
});
// init slider
owlCarousel.owlCarousel();
$(document).ready(function () {
setTimeout(function () {
var carouselTimer = setInterval(function () {
if (owlCarousel.height() > 1) {
clearInterval(carouselTimer)
};
owlCarousel.trigger('refresh.owl.carousel',
[100]);
}, 300);
}, 5000);
});
}
} else {
$('.main-container-job-information-container.gallery-container')
.css('display', 'none');
}
});
} else {
$('.main-container-job-information-container.gallery-container').css(
'display', 'none');
}
});
});
});
// remove 'AAUP' component if there's no chart
if (hasAAUP === 'On' && $(window).width() >= 768) {
$('.compensation-survey-data-container').css('display', 'block');
} else {
$('.compensation-survey-data-container').css('display', 'none');
}
}
}
}); // close $.ajax function
} // close getCollegeJobs functions
// remove empty rows from table
$('.job-information-table-value').each(function () {
var nonEmpty = $(this).filter(function () {
return $(this).text().trim() != "";
});
if (nonEmpty.length == 0) {
$(this).parent().remove();
}
// add even rows style
$('tr').filter(':even').addClass('even-row');
});
// remove 'Application Due' row
var applicationDue = $('td').filter(function () {
return $(this).text() == 'Application Due:';
}).closest('tr');
applicationDue.remove();
// parse faculty jobs and add their respective links
var facultyJobsString = $('.faculty-jobs-parse');
var facultyJobsStringParsed = facultyJobsString.text();
var facultyJobsArray = facultyJobsStringParsed.split(',');
for (var i = 0; i ' + facultyJobsArray[i].trim() +
'');
}
facultyJobsString.remove();
// remove 'See all jobs in:' if it doesn't haves any link
setTimeout(function () {
if ($('.aside-faculty-job-link').text() === '') {
$('.aside-orange-link').remove();
}
}, 2000);
// apply now button
var jobLink = '/apply/' + $('.js-job-detail').attr('data-jobid');
var applyForm = document.getElementById('apply-form');
if (applyForm === null || applyForm.length === 0) {
$('.apply-now-button').attr({
'href': jobLink,
'target': '_blank'
});
} else {
$('.apply-now-button').attr('href', '#apply-form').addClass('js-smooth-scrollto');
$('#apply-form').parent().parent().css('display', 'block').wrap(
'