var rightImgOn = newImage("images/nav_dot.gif");
var rightImgOff = newImage("images/clear.gif");

/* User Variables */
rightArray[r] = new Array("Learn More","images/right_learn.gif","learn.html");r++;
rightArray[r] = new Array("Request Quote","images/right_request.gif","quote.asp");r++;
rightArray[r] = new Array("References","images/right_references.gif","references.html");r++;
rightArray[r] = new Array("License &amp; Certification","images/right_license.gif","license.html");r++;
//rightArray[r] = new Array("Regulations","images/right_regulations.gif","regulations.html");r++;
//rightArray[r] = new Array("Regulatory","images/right_regulatory.gif","");r++;
//rightArray[r] = new Array("Notifications","images/right_notifications.gif","");r++;
rightArray[r] = new Array("Questions?","images/right_questions.gif","questions.html");r++;
/******************/

buildHTML = '<table border="0" cellspacing="0" cellpadding="0" class="rightNav">';
for(i=0;i<rightArray.length;i++)
{
    buildHTML += '<tr bgcolor="#ffffff"';
    if(i != rightStayOn)
    {
        buildHTML += 'onMouseOver="this.style.backgroundColor=\'#fff8ea\';this.style.cursor=\'hand\';"';
        buildHTML += 'onMouseOut="this.style.backgroundColor=\'#ffffff\';"';
        buildHTML += 'onMouseUp="top.location=\''+rightArray[i][2]+'\';"';
    }
    buildHTML += '><td><img src="images/'+((i==rightStayOn)?"right_greenbox.gif":"right_bluebox.gif")+'" alt="" width="19" height="21" border="0"></td>';
    buildHTML += '<td><img src="'+rightArray[i][1]+'" alt="'+rightArray[i][0]+'" width="168" height="8" border="0"></td></tr>';
}
buildHTML += '</table>';

wl(buildHTML);
