﻿(function() {

	/**
	* @author LThompson
	* @Requires JQuery.1.2.2
	*/
	
	$(document).ready(
		function() {

			// quick one to hide the sub nav titles when the nav is empty :D
			if ($('#rightCol .VSUSubNavigation').is(':empty'))
			{
				$('#rightCol .VSUSubNavigationTitle').addClass("hide");
				$('#rightCol .ctl_PageTitle').addClass("hide");
			}

		}
	);

})();