<!--
//---------------------------------------------------------------------
// Vertical menu 
// 
// How to use this file:
// Please add next line to your existing web project. Place the line 
// in the HTML code at position where you want to have the buttons menu.
//
// <script language="Javascript" src="resource.js"></script>
//
//
// Created by Agama Web Buttons
//----------------------------------------------------------------------

resource_imgsrc=new Array();
resource_imgsrc[1]="a_resource1.gif";
resource_imgsrc[2]="p_resource1.gif";

resource_img =new Array();
for (i=0; i< resource_imgsrc.length; i++) {
  resource_img[i]=new Image();
  resource_img[i].src=resource_imgsrc[i];
}
function resource_change(number, picture) {
  {
    document[picture].src=resource_img[number].src;
  }
}

qt="'";

document.writeln('<DIV>');
document.writeln('  <TABLE border="0" Cellpadding="0" Cellspacing="0" align="left" >');
document.writeln('    <TR><TD align="Left" height="0"><A ID="" HREF="resource.html"  TARGET="_top"  ONMOUSEOVER="resource_change('+qt+'1'+qt+','+qt+'resource_1'+qt+')" ONMOUSEOUT= "resource_change('+qt+'2'+qt+','+qt+'resource_1'+qt+')" name="resource_1"><IMG NAME="resource_1" SRC="p_resource1.gif" BORDER="0" vspace="0" hspace="0"></A></TD></TR>');
document.writeln('    <TR><TD height="0"></TD></TR>');
document.writeln('  </TABLE>');
document.writeln('</DIV>');
//-->
