﻿/*
*	Copyright © 2010, McMurry Inc.
*	http://www.mcmurry.com
*
*	Internal Javascript
*/
$(function () {
	// jQuery is fun for everybody
	$('#resumewizard select[id$=ddlAgeRangeList]').parent('td').remove();
	$('.careers-openings #main_content div strong:contains("Sorry, no results were found.")').html('There are currently no open positions.  Please check back for future openings.<br />Thank you.');

	if ($('#nav #li_services .subnav').length > 0) {
		$('#li_services .subnav').replaceWith($('#subnav-services .subnav'));
	} else {
		$('#li_services').append($('#subnav-services .subnav'));
	}
});
