﻿/* updates the site column called Periodical which is using the "choice" column type Common Ground */
$(document).ready(function()
{
	var $webPartMgr = $('#MSOSPWebPartManager_DisplayModeName');
	var $editMode = $webPartMgr.attr('value');
	
	if ($editMode == 'Browse')
	{
		var tm = '&#153'; // trademark
		//var tm = '&#174;'; // registered trademark
		var $magIssueTxt = $('div.magIssue:first').text();
		var txt = $magIssueTxt;
		
		if (txt.substring(0,13) == 'Common Ground')
		{
			var ss = txt.substring(0,13) + tm;
			var trademark = '<strong>' + ss + '</strong>';
			$('div.magIssue:first').html(trademark);
		}
	}	
});

