jQuery(document).ready(function()
	{
		// Set specific variable to represent all iframe tags.
		var iFrames = document.getElementsByTagName('iframe');
		
		// For other good browsers. 
		jQuery('iframe').load(function()
			{	
				// Set inline style to equal the body height of the iframed content
				this.style.height = this.contentWindow.document.body.scrollHeight + 'px';
			}
		);
		// First time this is needed because iframe is already loaded when this runs
		jQuery('iframe').trigger('load');
	}
);
