﻿var storeFrontImages = new Array();

function loadStoreFrontImages() {
    storeFrontImages = {
        main: new Image(),
        adamas: new Image(),
        diamond: new Image(),
        mainLamp: new Image(),
        collections: new Image(),
        couture: new Image(),
        events: new Image(),
        specials: new Image(),
        wholesale: new Image(),
        contact: new Image(),
        links: new Image(),
        subscribe: new Image()
    };
      
    storeFrontImages.main.src = applicationPath + "/images/storeFront.gif";
    storeFrontImages.adamas.src = applicationPath + "/images/storeFrontAdamas.gif";
    storeFrontImages.diamond.src = applicationPath + "/images/storeFrontDiamond.gif";
    storeFrontImages.mainLamp.src = applicationPath + "/images/storeFrontMainLamp.gif";
    storeFrontImages.collections.src = applicationPath + "/images/storeFrontCollections.gif";
    storeFrontImages.couture.src = applicationPath + "/images/storeFrontCouture.gif";
    storeFrontImages.events.src = applicationPath + "/images/storeFrontEvents.gif";
    storeFrontImages.specials.src = applicationPath + "/images/storeFrontSpecials.gif";
    storeFrontImages.wholesale.src = applicationPath + "/images/storeFrontWholesale.gif";
    storeFrontImages.contact.src = applicationPath + "/images/storeFrontContact.gif";
    storeFrontImages.links.src = applicationPath + "/images/storeFrontLinks.gif";
    storeFrontImages.subscribe.src = applicationPath + "/images/storeFrontSubscribe.gif";
}
        
function changeStoreFrontImage(newImage) {
    var storeFrontImageContainer = document.getElementById("storeFrontImageContainer");
    
    if (newImage) {
        if (newImage.src != "") {        
            storeFrontImageContainer.src = newImage.src;
        }
    }
}

addOnLoadEvent(loadStoreFrontImages);