// JavaScript Document
// (c)2009 Chuck Liddell

// Simple code to tweak DIV heights to ensure proper background-image match-ups at DIV borders
function tweakMiddleBg()
{
	div = document.getElementById('stage-middle');
	// Round to the nearest multiple of 5
	div.style.height = Math.round(div.offsetHeight / 5) * 5 + "px";
}
