function toggle(item) {
	if($(item).style.display == "none")
		$(item).style.display = "block";
	else
		$(item).style.display = "none";
}