// JavaScript Document

function showDropDown(id) {
	document.getElementById(id).className = 'visible';
	window.clearTimeout(clearId);
}
function hideDropDown(id) {
	document.getElementById(id).className = 'hidden';
}
function switchArchiveView(view) {
	document.getElementById('archive').setAttribute("class", view);
	if(view=='list') {
		document.getElementById('listButton').setAttribute('class', 'toggled');
		document.getElementById('iconButton').setAttribute('class', 'n');
	} else if(view=='icons') {
		document.getElementById('iconButton').setAttribute('class', 'toggled');
		document.getElementById('listButton').setAttribute('class', 'n');
	}
}
function showReplyForm(commentid) {
	document.getElementById(commentid).setAttribute("class", "visible");
}
