var fadeimages = new Array();
var typeArr = [ 'A','B','C' ];

Array.prototype.shuffle = function()
{
    var i = this.length;
    while(i){
        var j = Math.floor(Math.random()*i);
        var t = this[--i];
        this[i] = this[j];
        this[j] = t;
    }
    return this;
}

typeArr.shuffle();
// console.debug( typeArr );

//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["./img/top/flashArea/" + typeArr[0] + "/1.jpg", "", ""];
fadeimages[1]=["./img/top/flashArea/" + typeArr[0] + "/2.jpg", "", ""];
fadeimages[2]=["./img/top/flashArea/" + typeArr[0] + "/3.jpg", "", ""];
fadeimages[3]=["./img/top/flashArea/" + typeArr[0] + "/4.jpg", "hoge", ""];

var fadebgcolor="";// ”’

