// JavaScript Document

	var ogWidth = document.getElementById('fill').offsetWidth;
	
	function swapOut(newWidth)
	{
		document.getElementById('fill').style.width=newWidth+'px';		
	}

	function swapBack()
	{
		document.getElementById('fill').style.width=ogWidth+'px';
	}
