/*charts*/

function charts(first_id,second_id){
	var s_id='order_'+first_id;
	var li_id='li_'+first_id;
	
	document.getElementById('order_'+second_id).style.display='none';
	document.getElementById('li_'+second_id).className='';	

	
	document.getElementById(s_id).style.display='block';
	document.getElementById(li_id).className='curr';

}