/* 
 * 
/*--------------------------------------------------------------------------*/
addListen(
	window,
	'load',
	function(){
		if(srcPhoto){
			var n = getRandomInt(0, srcPhoto.length - 1);
		}
		var imgElm = document.createElement('img');
		imgElm.src = srcPhoto[n];
		imgElm.width = '375';
		imgElm.height = '476';
		imgElm.id = 'top_image';
		
		var pElm = document.createElement('p');
		pElm.appendChild(imgElm);
		
		var innerElm = document.createElement('div');
		innerElm.className = 'inner';
		innerElm.appendChild(pElm);
		
		document.getElementById('detail_column').appendChild(innerElm);
		
	}
);