// JavaScript Document<!-- Copyright DBJones Computers 2009 --><!-- Start Menu --><!-- Home Button -->if ( document.images ){  home_on = new Image ( );  home_off = new Image ( );  home_on.src = "images/home2.jpg";  home_off.src = "images/home1.jpg";}function button_on ( imgId ){  if ( document.images )  {    butOn = eval ( imgId + "_on.src" );    document.getElementById(imgId).src = butOn;  }}function button_off ( imgId ){  if ( document.images )  {    butOff = eval ( imgId + "_off.src" );    document.getElementById(imgId).src = butOff;  }}<!-- About Us - Button -->if ( document.images ){  about_on = new Image ( );  about_off = new Image ( );  about_on.src = "images/about2.jpg";  about_off.src = "images/about1.jpg";}function button_on ( imgId ){  if ( document.images )  {    butOn = eval ( imgId + "_on.src" );    document.getElementById(imgId).src = butOn;  }}function button_off ( imgId ){  if ( document.images )  {    butOff = eval ( imgId + "_off.src" );    document.getElementById(imgId).src = butOff;  }}<!-- Products - Button -->if ( document.images ){  prod_on = new Image ( );  prod_off = new Image ( );  prod_on.src = "images/prod2.jpg";  prod_off.src = "images/prod1.jpg";}function button_on ( imgId ){  if ( document.images )  {    butOn = eval ( imgId + "_on.src" );    document.getElementById(imgId).src = butOn;  }}function button_off ( imgId ){  if ( document.images )  {    butOff = eval ( imgId + "_off.src" );    document.getElementById(imgId).src = butOff;  }}<!-- What's New - Button -->if ( document.images ){  new_on = new Image ( );  new_off = new Image ( );  new_on.src = "images/new2.jpg";  new_off.src = "images/new1.jpg";}function button_on ( imgId ){  if ( document.images )  {    butOn = eval ( imgId + "_on.src" );    document.getElementById(imgId).src = butOn;  }}function button_off ( imgId ){  if ( document.images )  {    butOff = eval ( imgId + "_off.src" );    document.getElementById(imgId).src = butOff;  }}<!-- Service - Button  -->if ( document.images ){  serv_on = new Image ( );  serv_off = new Image ( );  serv_on.src = "images/serv2.jpg";  serv_off.src = "images/serv1.jpg";}function button_on ( imgId ){  if ( document.images )  {    butOn = eval ( imgId + "_on.src" );    document.getElementById(imgId).src = butOn;  }}function button_off ( imgId ){  if ( document.images )  {    butOff = eval ( imgId + "_off.src" );    document.getElementById(imgId).src = butOff;  }}<!-- Links - Button -->if ( document.images ){  links_on = new Image ( );  links_off = new Image ( );  links_on.src = "images/links2.jpg";  links_off.src = "images/links1.jpg";}function button_on ( imgId ){  if ( document.images )  {    butOn = eval ( imgId + "_on.src" );    document.getElementById(imgId).src = butOn;  }}function button_off ( imgId ){  if ( document.images )  {    butOff = eval ( imgId + "_off.src" );    document.getElementById(imgId).src = butOff;  }}<!-- Contact Us Button -->if ( document.images ){  cont_on = new Image ( );  cont_off = new Image ( );  cont_on.src = "images/cont2.jpg";  cont_off.src = "images/cont1.jpg";}function button_on ( imgId ){  if ( document.images )  {    butOn = eval ( imgId + "_on.src" );    document.getElementById(imgId).src = butOn;  }}function button_off ( imgId ){  if ( document.images )  {    butOff = eval ( imgId + "_off.src" );    document.getElementById(imgId).src = butOff;  }}<!-- End Menu -->
