function init ()
{
	var topContent = document.getElementById ('movetobottom');
	var bottomContent = document.getElementById ('bottom');
	
	if (topContent && bottomContent)
	{
		bottomContent.innerHTML = topContent.innerHTML;
		bottomContent.style.display = 'block';
		topContent.parentNode.removeChild (topContent);
	}
}
