// highlights the project names

function determination()
{
    var title;
    var textColor = '#ffffff';
    var defaultPID = 'home';
    var pageTitle = defaultPID;
 
    titleMatches = location.pathname.match(/(\w+)\.shtml$/);

 
    if (titleMatches != null)
    {
		if (titleMatches.length > 1)
		{
			pageTitle = titleMatches[1];
		}

		$('#' + pageTitle).css('color', '#9C9EA0');
    }
}

$(window).load(determination);

