// rollover script for SAFI

if (document.images)
{
   safi = new Image(50, 50)
   safi.onsrc="graphics/hover.gif";
   safi.offsrc="graphics/null.gif";

   crbv = new Image(50, 50)
   crbv.onsrc="graphics/hover.gif";
   crbv.offsrc="graphics/null.gif";

   crdv = new Image(50, 50)
   crdv.onsrc="graphics/hover.gif";
   crdv.offsrc="graphics/null.gif";

   ear = new Image(50, 50)
   ear.onsrc="graphics/hover.gif";
   ear.offsrc="graphics/null.gif";

   ipbv = new Image(50, 50)
   ipbv.onsrc="graphics/hover.gif";
   ipbv.offsrc="graphics/null.gif";

   pvdfmiv = new Image(50, 50)
   pvdfmiv.onsrc="graphics/hover.gif";
   pvdfmiv.offsrc="graphics/null.gif";

   cradv = new Image(50, 50)
   cradv.onsrc="graphics/hover.gif";
   cradv.offsrc="graphics/null.gif";

   scdpr = new Image(50, 50)
   scdpr.onsrc="graphics/hover.gif";
   scdpr.offsrc="graphics/null.gif";

   spa = new Image(50, 50)
   spa.onsrc="graphics/hover.gif";
   spa.offsrc="graphics/null.gif";

   safiaa = new Image(50, 50)
   safiaa.onsrc="graphics/hover.gif";
   safiaa.offsrc="graphics/null.gif";

   email = new Image(50, 50)
   email.onsrc="graphics/hover.gif";
   email.offsrc="graphics/null.gif";

   to_top = new Image(50, 50)
   to_top.onsrc="graphics/to_top_h.gif";
   to_top.offsrc="graphics/to_top_n.gif";

}

function on(name)
{
   if (document.images)
   {
      imgname=eval(name+".onsrc")
      document[name].src=imgname
   }
}

function off(name)
{
   if (document.images)
   {
      imgname=eval(name+".offsrc")
      document[name].src=imgname
   }
}

// useage
// <A href="wherever" onmouseover="on('name'); return true;" onmouseout="off('name'); return true;">
// <IMG src="graphics/null.gif" name="name" border="0" width="50" height="50"></A>