
startList = function()
{
var isIE5m = 0;
var i, j, k, node, cnode, knode, navRoot;

/* Attempt to overcome IE nasties */
/* ------------------------------ */
 if ((navigator.platform.indexOf('Mac') != -1) && (navigator.appVersion.indexOf("MSIE 5") != -1))
 {
  navRoot = document.getElementById("col1");
  navRoot.style.width = "100px";
  navRoot = document.getElementById("col2");
  navRoot.style.width = "500px";
  navRoot = document.getElementById("col3");
  navRoot.style.width = "204px";
  isIE5m = 1;
 }
 navRoot = document.getElementById("top-navigation");
 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", ""); }
   if (isIE5m)
   {
    node.style.width = "127px";
    for (j=0; j < node.childNodes.length; j++)
    {
     cnode= node.childNodes[j];
     if (cnode.nodeName=="UL")
     {
      for (k=0; k < cnode.childNodes.length; k++)
      {
       knode = cnode.childNodes[k];
       if (knode.nodeName=="LI")
        knode.style.width = "128px";
      }
     }
    }
   }
  }
 }
 setTimeout("dochange()", 3210);
}
window.onload=startList;

var prloadedimgs = new Array();
prloadedimgs[0] = new Image();
prloadedimgs[0].src = 'images/click2give.jpg';
var divflg = 0;
var pcnt = 0;

function dochange()
{
var isIE6 = document.all && document.getElementById;
var str;

  if (pcnt == 0) 
  {
   pcnt = 1;
   str = 'images/click2give2.jpg';
  } 
  else 
  {
   pcnt = 0;
   str = 'images/click2give1.jpg';
  }
  if (isIE6)
   document.c2g.filters[0].apply();
  document.c2g.src = str;
  if (isIE6)
   document.c2g.filters[0].play();
  setTimeout("dochange()", 3210);
}

