//this feature is intended to help us target css to each nav item in the top nav to use different color bullets


jQuery(function($)
{  
	$("#globalNav li a").not("#globalNav li li a, #globalNav li li li a").each(function(counter)
	{
		var navNumber = counter + 1;
		
		var className = 'navLink' + navNumber;
		$(this).addClass(className);																																	  });
});
