
var ABOUT_MENU_CAPTIONS=['About Pink OTC Markets','History','News','Contact','FAQ','Glossary','Careers','Market Holidays'];var ABOUT_MENU_ACTIONS=['gotoAboutUs','gotoHistory','gotoAllPinkNews','gotoContact','gotoFaq','gotoGlossary','gotoCareers','gotoMarketHolidays'];function createAboutMenu(index)
{var elem=document.getElementById('subMenuContent');if(undefined==elem)
return;var lastIndex=ABOUT_MENU_CAPTIONS.length-1;for(var i=0;i<ABOUT_MENU_CAPTIONS.length;i++)
{elem.appendChild(document.createTextNode(' '));if(i==index)
elem.appendChild(document.createTextNode(ABOUT_MENU_CAPTIONS[i]));else
{var anchor=document.createElement('a');anchor.href='javascript:appNav.'+ABOUT_MENU_ACTIONS[i]+'()';anchor.appendChild(document.createTextNode(ABOUT_MENU_CAPTIONS[i]));elem.appendChild(anchor);}
if(i<lastIndex)
elem.appendChild(document.createTextNode(' |'));}}