//RANDOM IMAGES
//count = 0;
Jpg = new Array('arai_rikutoA','arai_soutaA','hayashida_rinaA','higurashi_rikaA','hirokawa_mioA','ikeda_momokaA','minagawa_shinaA','miyazaki_kousukeA','nakamura_maiA','ona_kazuyaA','tominaga_nozomiA');

share = Math.floor(Jpg.length/3);
firJPG = Jpg.slice(0,share);
secJPG = Jpg.slice(share,share*2);
tirJPG = Jpg.slice(share*2,Jpg.length);

function imgCNG(){
first = Math.floor(Math.random()*firJPG.length);
second = Math.floor(Math.random()*secJPG.length);
thrid = Math.floor(Math.random()*tirJPG.length);

document.RM1.src = "./profile10/images/" + firJPG[first] + ".jpg";
document.RM2.src = "./profile10/images/" + secJPG[second] + ".jpg";
document.RM3.src = "./profile10/images/" + tirJPG[thrid] + ".jpg";
}