//--------------- image script ---------------//

var imageArray = new Array("images/bigdoll_1.jpg","images/bigdoll_2.jpg","images/bigdoll_3.jpg");

var myter;
var myalt = new Array("doll1","doll2","doll3");

                                       
var whatImage = Math.floor(Math.random()*3);

if(whatImage<=0){
            theImage=imageArray[0];
            myter=myalt[0]    
} else if(whatImage<=1){
            theImage=imageArray[1];
            myter=myalt[1] 
} else if(whatImage<=2){
            theImage=imageArray[2];
            myter=myalt[2] 
}

//--------------- end image script ---------------//




