$(document).ready(function() {
	$('iframe').load(function() {
		if ($.browser.msie) {
		    this.style.height =	this.contentWindow.document.body.scrollHeight + 20 + 'px';
		} else {
		    this.style.height =	this.contentDocument.body.offsetHeight + 20 + 'px';
		}
	});
});

