/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
/**
 * Comment
 */
function changeToColor(data) {
    data.src = data.src.replace("_BW", "");
    
}

/**
 * Comment
 */
function changeToBW(data) {
    data.src = data.src.replace("\.png", "_BW\.png");
}

function Preload() {
    var args = simplePreload.arguments;
    document.imageArray = new Array(args.length);
    for(var i=0; i<args.length; i++) {
        document.imageArray[i] = new Image;
        document.imageArray[i].src = args[i];
    }
}


