$(function(){
	$("iframe").each(function(){
		var iframe = this;
		if ($.browser.safari || $.browser.opera) {
			$(iframe).load(function(){
				setTimeout(function(){
					iframe.style.height = iframe.contentWindow.document.body.offsetHeight + 'px'
				}, 0);
			});
			var src = iframe.src;
			iframe.src = '';
			iframe.src = src;
		} else {
			$(iframe).load(function(){
				iframe.style.height = iframe.contentWindow.document.body.offsetHeight + 'px';
			});
		}		
	});
});