var lrsEmployees = [ 'nate', 'btaylor', 'joliver', 
			'jmac', 'edavis', 'mlinley', 
			'Lee', 'SCOTTY2THAG',
			'colter', 'redfiresvt', 'scott s',
			'Karson', 'BRYMERTZ', 'LRS', 'j.johnston', 
			'jmartin', 'jarrod06gt', 'DBirkes', 'Curtis',
			'josh_c', 'NateG', 'Alex@LRS' ];
						
var sectionTags = [ 'promo', 'tech', 'news', 'newproduct' ];

function IsLrsEmployee(userName)
{
	for(i=0;i<lrsEmployees.length;i++)
	{
		if(lrsEmployees[i] == userName)
		{
			return true;
		}
	}
	
	return false;
}

function GetSectionIcons(tagString)
{
	var iconHtml = '';
	
	for(i=0;i<sectionTags.length;i++)
	{
		if(tagString.indexOf(sectionTags[i]))
		{
			iconHtml += '<img src="http://media.latemodelrestoration.com/images/icons/mylrs_section_' + sectionTags[i] + '.gif" />';
		}
	}
	
	return iconHtml;
}