
    var ic = 5;     
    var xoxo = new Array(ic);  
        
xoxo[0]= "../aboutme/images/kedishi1.jpg";
xoxo[1] = "../aboutme/images/kedishi2.jpg";
xoxo[2] = "../aboutme/images/kedishi3.jpg";
xoxo[3] = "../aboutme/images/toon-kedishi.jpg";
xoxo[4] = "../aboutme/images/kid-kedishi.jpg";



function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
var choice = pickRandom(ic);


