// JavaScript Document

   if (document.images)
        {

                menu1on = new Image;           // Active images
                menu1on.src = "images/aboutus.GIF";  
                menu2on = new Image; 
                menu2on.src = "images/show.GIF";  
                menu3on = new Image;
                menu3on.src = "images/inspiration.GIF";
                menu4on = new Image;
                menu4on.src = "images/angls.GIF";
                menu5on = new Image;
                menu5on.src = "/images/commuication.GIF";
                menu6on = new Image;
                menu6on.src = "/images/links.GIF";
                menu7on = new Image;
                menu7on.src = "/images/hgs.GIF";
                menu8on = new Image;
                menu8on.src = "/images/snds.GIF";
                menu9on = new Image;
                menu9on.src = "/images/commnts.GIF";
                menu10on = new Image;
                menu10on.src = "/images/children.GIF";
                menu11on = new Image;
                menu11on.src = "/images/home.GIF";
                menu12on = new Image;
                menu12on.src = "/images/chat.GIF";
                menu13on = new Image;
                menu13on.src = "/images/mindconn.GIF";              

                menu1off = new Image;          // Inactive images
                menu1off.src = "images/aboutus.GIF"; 
                menu2off = new Image;
                menu2off.src = "images/show.GIF";  
                menu3off = new Image;
                menu3off.src = "images/inspiration.GIF";
                menu4off = new Image;
                menu4off.src = "images/angls.GIF";
                menu5off = new Image;
                menu5off.src = "/images/commuication.GIF";
                menu6off = new Image;
                menu6off.src = "/images/links.GIF";
                menu7off = new Image;
                menu7off.src = "/images/hgs.GIF";
                menu8off = new Image;
                menu8off.src = "/images/snds.GIF";
                menu9off = new Image;
                menu9off.src = "/images/commnts.GIF";
                menu10off = new Image;
                menu10off.src = "/images/children.GIF";
                menu11off = new Image;
                menu11off.src = "/images/home.GIF";
                menu12off = new Image;
                menu12off.src = "/images/chat.GIF";
                menu13off = new Image;
                menu13off.src = "/images/mindconn.GIF";
              
        }
function img_act(imgName)
        {
        if (document.images)
                {
                        imgOn = eval(imgName + "on.src");
                        document [imgName].src = imgOn;
                }
        }
function img_inact(imgName)
        {
        if (document.images)
                {
                        imgOff = eval(imgName + "off.src");
                        document [imgName].src = imgOff;
                }
        }