{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf420
{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\margl1440\margr1440\vieww9000\viewh8400\viewkind0
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural

\f0\fs24 \cf0 // JavaScript Document\
\
startList = function() \{\
if (document.all&&document.getElementById) \{\
navRoot = document.getElementById("nav");\
for (i=0; i<navRoot.childNodes.length; i++) \{\
node = navRoot.childNodes[i];\
if (node.nodeName=="LI") \{\
node.onmouseover=function() \{\
this.className+=" over";\
  \}\
  node.onmouseout=function() \{\
  this.className=this.className.replace(" over", "");\
   \}\
   \}\
  \}\
 \}\
\}\
window.onload=startList;}