var subimages = new Array(
		'<a href="http://www.cityheaven.net/k/marunouchi_ogoto/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/marunouchi_ogoto.jpg" /></a>',
		
		'<a href="http://www.cityheaven.net/k/passion_pre_kyoto/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/puremium_kyoto.jpg" /></a>',		
		
		'<a href="http://www.cityheaven.net/k/kyohp/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/kyohp.jpg" /></a>',
	
		'<a href="http://www.cityheaven.net/k/kyo_hp_part2/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/kyo_hp_part2.jpg" /></a>',
						  
		'<a href="http://www.cityheaven.net/k/lip_stick/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/lip_stick.jpg" /></a>',
	
//		'<a href="http://www.cityheaven.net/k/mrs_hp/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/mrs_hp.jpg" /></a>',
						  
		'<a href="http://www.cityheaven.net/k/rich_house/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/rich_house.jpg" /></a>',
		
		'<a href="http://www.cityheaven.net/k/duck_kyoto/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/duck_kyoto.jpg" /></a>',
		
		'<a href="http://www.cityheaven.net/k/misoji_kai/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/misoji_kai.jpg" /></a>',
		
		'<a href="http://www.cityheaven.net/k/mitsuran/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/mitsuran.jpg" /></a>',

		'<a href="http://www.cityheaven.net/k/edojo/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/edojo.jpg" /></a>',
						  
		'<a href="http://www.cityheaven.net/k/amouage/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/amouage.jpg" /></a>',
		
		'<a href="http://www.cityheaven.net/k/perfect_gion/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/perfect_gion.jpg" /></a>',
		
		'<a href="http://www.cityheaven.net/k/cancan_gion/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/cancan_gion.jpg" /></a>',
	
		'<a href="http://www.cityheaven.net/k/ryugujo/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/ryugujo.jpg" /></a>',
		
		'<a href="http://www.cityheaven.net/k/kaisyun_kyoto/" target="_blank"><img src="/img/commtpl/kyoto-fuzoku/images/banner/kaisyun_kyoto.jpg" /></a>');

var figure = subimages.length;

for (i=0; i<100; i++) //　100はシャッフルする回数
{
	n1 = Math.floor(Math.random() * figure);
	n2 = Math.floor(Math.random() * figure);
	n = subimages[n1];
	subimages[n1] = subimages[n2];
	subimages[n2] = n;
}

//バナーイメージを呼び出す関数
function putsubimage(cnt){
	document.write(subimages[cnt]);
}
//-->

