// JavaScript Document

function matchHeight() 	{
	var originalHeight=document.getElementById('footer').offsetHeight;
	var matchedHeight=document.getElementById('container');
	matchedHeight.style.paddingBottom=originalHeight+"px";
	}