if (document.images) {            // Active Images
            img1on = new Image();      
            img1on.src = "/images/shop/button_shop_kidmo_f2.gif";

            img2on = new Image();      
            img2on.src = "/images/shop/button_shop_lilk_f2.gif";
            
             img3on = new Image();      
            img3on.src = "/images/shop/button_shop_kmotion_f2.gif";

            img4on = new Image();      
            img4on.src = "/images/shop/button_shop_touchpoints_f2.gif";
            
             img5on = new Image();      
            img5on.src = "/images/shop/button_shop_merch_f2.gif";

            img6on = new Image();      
            img6on.src = "/images/shop/button_shop_bundles_f2.gif";
            
           
            
    
            img1off = new Image(); 
            img1off.src = "/images/shop/button_shop_kidmo.gif";

            img2off = new Image(); 
            img2off.src = "/images/shop/button_shop_lilk.gif";
            
            img3off = new Image(); 
            img3off.src = "/images/shop/button_shop_kmotion.gif";

            img4off = new Image(); 
            img4off.src = "/images/shop/button_shop_touchpoints.gif";
            
            
            img5off = new Image(); 
            img5off.src = "/images/shop/button_shop_merch.gif";

            img6off = new Image(); 
            img6off.src = "/images/shop/button_shop_bundles.gif";
            

            
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

function openNewWindow(url) {
window.open(url,'target01_window','menubar=0,toolbar=0,location=0,directories=0,status=0,scrollbars=auto,resizable=1,dependent=0,width=729,height=577,left=0,top=0');
}


