// JavaScript Document

function rndImage() {
	var aryLink= new Array(
												  'http://www.k-ds.net/news/2009/09/post-7.html'
//												 ,'http://www.k-ds.net/news/2009/06/post-4.html'
//												 ,'http://www.k-ds.net/news/2009/06/post-3.html'
//												 ,'http://www.k-ds.net/news/2009/06/post-4.html'
												 );
	var num = Math.floor(Math.random()*1);
	document.write('<a href="'+aryLink[num]+'"><img src="./images/main' + num + '.gif" width="100" height="100"></a>');

}
