﻿function selectNew(newId)
{
    var allLinks = new Array();
    allLinks[0]='effectsofstress';
    allLinks[1]='managingyourstress';
    allLinks[2]='reducetherisk';
    allLinks[3]='findingtherightbalance';
    allLinks[4]='strategiesforfindingtherightbalance';
    allLinks[5]='whyyouneedavacation';
    allLinks[6]='propervacationnutrition';
    allLinks[7]='leavingworktherightway';

    
    var allContent = new Array();
    for(x in allLinks)
    {
        allContent[x]='content'+allLinks[x];
    }
        
    for(x in allLinks)
    {
        try
        {
            document.getElementById(allLinks[x]).className='';
            document.getElementById(allContent[x]).className='invisible';
        }
        catch(err)
        {
        }

    }
    
    
    document.getElementById(newId).className='selected';
    document.getElementById('content'+newId).className='visible';
}