﻿/*
*	Copyright © 2010, McMurry Inc.
*	http://www.mcmurry.com
*
*	Internal Javascript
*/
$(function () {
	if ($('#nav #li_services .subnav').length > 0) {
		$('#li_services .subnav').replaceWith($('#subnav-services .subnav'));
	} else {
		$('#li_services').append($('#subnav-services .subnav'));
	}
});
