url = new Array();
img = new Array();
alt = new Array();






















url[0]="http://www.osaka-nt.com/2010/01/post-3.html";









































img[0]="http://www.osaka-nt.com/2010/03/05/leciel/leciel.jpg";









































alt[0]="ル・シェル";


















 

for(i = 0; i < img.length; i++){
rm = Math.floor(Math.random() * img.length + 0);
tempI=img[i];img[i]=img[rm];img[rm]=tempI;
tempU=url[i];url[i]=url[rm];url[rm]=tempU;
tempA=alt[i];alt[i]=alt[rm];alt[rm]=tempA;
}
for(i = 0; i < 1; i++){
document.writeln("<a href='" + url[i] + "'><img src='" + img[i] + "' alt='" + alt[i] + "' /></a>");
}

