// JavaScript Document
var rt = "0";
function toogle(postid) {
	if(rt != "0"){
		document.getElementById(rt).className="collapse";
	}
var whichpost = document.getElementById(postid);
	if (whichpost.className=="expand") {
	whichpost.className="collapse";
	}
	else {
	whichpost.className="expand";
	}
	rt = postid;
}