function showContainer(id, secondID)
{
	Effect.SlideDown(id, { duration: 3.0 });
	document.getElementById('showContainer' + secondID).style.display = 'none';
	document.getElementById('hideContainer' + secondID).style.display = 'block';
	return false;
}
function hideContainer(id, secondID)
{
	Effect.SlideUp(id, { duration: 3.0 });
	document.getElementById('hideContainer' + secondID).style.display = 'none';
	document.getElementById('showContainer' + secondID).style.display = 'block';
	return false;
}