$(document).ready(function()
	{
		function iResize()
		{
			$("iframe").load(function()
				{
					// Set inline style to equal the body height of the iframed content.
					this.style.height = this.contentWindow.document.body.offsetHeight + 'px';
				}
			);
		}
		setTimeout(iResize, 2000);
	}
);