﻿
// check jQuery load.
if ((typeof $) == "function")
{
	// Begin processing JQuery commands when DOM is first ready
	$(document).ready(function()
	{
		// check for CSS Box Model Support
		if ($.support.boxModel)
		{
			// Make the first word in the Military News list bold.
			var $MilitaryNewsListItems = $("div#MilitaryNewsBlock").find("ul.StandardList li");
			$MilitaryNewsListItems.each(function()
			{
				var $this = $(this);
				var html = $this.html();
				if (html.indexOf(" - ") > 0)
				{
					var words = html.split(" - ");
					words[0] = "<b>" + words[0] + "</b>";
					$this.html(words.join(" - "));
				}
			});
		}
	});
}
