
	
	function show_dop(itemid){

		for(var i=1; i<=DOP_CNT; i++){
			document.getElementById('dop'+i).className='dopitem';
			document.getElementById('opt'+i).className='option';
		}
		document.getElementById('dop'+itemid).className='';
		document.getElementById('opt'+itemid).className='option active';

		return null;
	};

	show_dop( Math.round(1+Math.random() * (DOP_CNT-1)) );
