// =JavaScript Document= Random Image Display Script 2008.12.05

var imgParam = [
	["./images/random/aco.jpg", "./02ladys/profile_aco.html"], 
//	["./images/random/karin.jpg", "./02ladys/profile_karin.html"], 
	["./images/random/juri.jpg", "./02ladys/profile_juri.html"], 
//	["./images/random/michiru.jpg", "./02ladys/profile_michiru.html"], 
//	["./images/random/kasumi.jpg", "./02ladys/profile_kasumi.html"], 
	["./images/random/nana.jpg", "./02ladys/profile_nana.html"], 
	["./images/random/ibara.jpg", "./02ladys/profile_ibara.html"], 
];

function RandomImageLink() {
	var selectnum = Math.floor(Math.random() * imgParam.length);
	var output = '<a href="' + imgParam[selectnum][1] + '"><img src="' + imgParam[selectnum][0] + '" width="570" height="200" /></a>';

	document.write(output);
}
