// use the prototype1.6.js

//js有効の時に指定のidを非表示

//document.getElementById("shuffle_display").style.display = "none" ;

//js有効の時に指定エリアの.partをランダム順にして書き出し

/*
f = new Array();
shuffleads = new Array();

f = $$(".shufflead .part");
for (i=0 ; i<f.length; i++){var tmpA, tmpB, rnd;rnd=Math.floor(Math.random() * f.length);tmpA=f[i];tmpB=f[rnd];f[i]=tmpB;f[rnd]=tmpA;}
for(var i=0; i<f.length; i++){
	document.write(f[i].innerHTML);
	}
*/

var array = ['0', '165', '330'];
for (i=0 ; i<array.length; i++){var tmpA, tmpB, rnd;rnd=Math.floor(Math.random() * array.length);tmpA=array[i];tmpB=array[rnd];array[i]=tmpB;array[rnd]=tmpA;}
document.getElementById("ad_03").style.top = array[0]+'px' ;
document.getElementById("ad_04").style.top = array[1]+'px' ;
document.getElementById("ad_05").style.top = array[2]+'px' ;
