function collapse(story_id)
{
	document.getElementById('story_full_' + story_id).style.display = "none";
	document.getElementById('story_continue_' + story_id).style.display = "block";
	document.getElementById('story_collapse_' + story_id).style.display = "none";
}

function reveal(story_id)
{
	document.getElementById('story_full_' + story_id).style.display = "block";
	document.getElementById('story_continue_' + story_id).style.display = "none";
	document.getElementById('story_collapse_' + story_id).style.display = "block";
}

function showPopup(hoveritem)
{
	hp = document.getElementById("popup");

	// Set position of hover-over popup
	hp.style.top = hoveritem.offsetTop + -32;
	hp.style.left = hoveritem.offsetLeft + 390;

	// Set popup to visible
	hp.style.visibility = "Visible";
}

function hidePopup()
{
	hp = document.getElementById("popup");
	hp.style.visibility = "Hidden";
}
