//=========================
/***********************************************************
 _____         _ __        __   _       ___ ___
|  ___|_ _ ___| |\ \      / /__| |__   |_ _|_ _|
| |_ / _` / __| __\ \ /\ / / _ \ '_ \   | | | |
|  _| (_| \__ \ |_ \ V  V /  __/ |_) |  | | | |
|_|  \__,_|___/\__| \_/\_/ \___|_.__/  |___|___|

* FastCart II/FastWeb II/FastList II
* The Hebrew E-commerce and web content Solution
* by Idan-Hadli
* ver 2.1.1 02/2005
*
*************************************************************
*    PLEASE NOTE, THIS SOFTWER IS COPYRIGHT PROTECTED!      *
*************************************************************
*
* Copyright (c) 1998-2005 Idan-Hadli
* All rights reserved.
* http://idan-hadli.net   web@idan-hadli.net
*
***********************************************************/
// load the menu images rool over
function loadMenuImages() 

{
     var i = 0;
     imageHolder = new Image();
     //=========================
     myImages = new Array();
     myImages[0]="images/html_imges/1_bw.gif"
     myImages[1]="images/html_imges/1_col.gif"
     myImages[2]="images/html_imges/2_bw.gif"
     myImages[3]="images/html_imges/2_col.gif"
     myImages[4]="images/html_imges/3_bw.gif"
     myImages[5]="images/html_imges/3_col.gif"
     myImages[6]="images/html_imges/4_bw.gif"
     myImages[7]="images/html_imges/4_col.gif"
     myImages[8]="images/html_imges/5_bw.gif"
     myImages[9]="images/html_imges/5_col.gif"
     myImages[10]="images/html_imges/6_bw.gif"
     myImages[11]="images/html_imges/6_col.gif"
     myImages[12]="images/html_imges/7_bw.gif"
     myImages[13]="images/html_imges/7_col.gif"
     myImages[14]="images/html_imges/8_bw.gif"
     myImages[15]="images/html_imges/8_col.gif"
     myImages[16]="images/html_imges/9_bw.gif"
     myImages[17]="images/html_imges/9_col.gif"
     //=========================
     for(i=0; i <= 17; i++) 
     {
          imageHolder.src=myImages[i];
     }
} 
//=========================
loadMenuImages();
//=========================
/*
usage:
add this to header section at the {TOP} FW2 html page.
<script type="text/javascript" language="javascript1.2" src="up_imags_loader.js"></script>
*/
