function show_answer(id){
	if (document.getElementById('answer_'+id).style.display=='none') document.getElementById('answer_'+id).style.display = 'block';
	else document.getElementById('answer_'+id).style.display = 'none';
}

function showMain(id) {
	document.getElementById('mainPhoto').src = '/uploads/news/view/'+id+'_v.jpg';
	for (i=0;i<thumbs.length;i++) {
		document.getElementById('th_'+thumbs[i]).style.backgroundImage = 'url(/img/th_bg.gif)';
	}
	document.getElementById('th_'+id).style.backgroundImage = 'url(/img/th_bg_a.gif)';
	document.getElementById('butload').href = '/uploads/news/original/'+id+'.jpg';
}
function showArchive(id) {
	document.getElementById('mainPhoto').src = '/uploads/archive/view/'+id+'_v.jpg';
	for (i=0;i<thumbs.length;i++) {
		document.getElementById('th_'+thumbs[i]).style.backgroundImage = 'url(/img/th_bg.gif)';
	}
	document.getElementById('th_'+id).style.backgroundImage = 'url(/img/th_bg_a.gif)';
	document.getElementById('butload').href = '/uploads/archive/original/'+id+'.jpg';
}
