  // ++START++ button highlight code
  ImageDir ="/resources/images/";
  function toc_images ( name, width, height){
    this.on = new Image (width, height);
    this.on.src = ImageDir + name + "_on.gif";
    this.off = new Image (width, height);
    this.off.src = ImageDir + name + "_off.gif";
  }
  
  function toc_images_new (name, width, height){
    toc_images [name] = new toc_images (name, width, height);
  }
  
  function img_on (name){
    if (document.images) document[name].src = toc_images[name].on.src;
  }
  
  function img_off (name){
    if (document.images) document[name].src = toc_images[name].off.src;
  }
  
  function preload_images (){
    toc_images_new ( "business_button",181,26);
	toc_images_new ( "nav_contact02",127,13);
	toc_images_new ( "nav_current03",98,13);
	toc_images_new ( "nav_app",112,13);
	toc_images_new ( "nav_apr04",109,13);
	toc_images_new ( "nav_info01",114,13);
	toc_images_new ( "nav_privacy05",100,13);
	toc_images_new ( "need_button",131,22);
	toc_images_new ( "need_member",131,15);
	toc_images_new ( "header_businessopp",164,22);
	toc_images_new ( "header_business_login",164,15);
	toc_images_new ( "apage_apply",210,26);
 	toc_images_new ( "nav_one",165,58);
	toc_images_new ( "nav_two",165,58);
	toc_images_new ( "nav_three",165,58);
	toc_images_new ( "nav_four",165,58);
	toc_images_new ( "nav_five",165,58);
	toc_images_new ( "nav_six",165,58);
 }

  // If the browser doesn't have an image object (IE3.0 doesn't ) then don't load images
  // this protects it from causing an error.
  if (document.images) preload_images() ;
  // ++END++ button highlight code