$(document).ready(function(){
	$('iframe.fitted_iframe').each(function() {
		$(this).load(function(){
			var iframe = this;
			function fit() {
				if (
					iframe.contentWindow
					&& iframe.contentWindow.document
					&& iframe.contentWindow.document.documentElement
					&& iframe.contentWindow.document.documentElement.scrollHeight
				) {
          if (iframe.contentWindow.document.documentElement.scrollHeight>20) {
					  $(iframe).height(iframe.contentWindow.document.documentElement.scrollHeight+10);
          }
          else {
					  $(iframe).height(0);
          }
				}
				else {
					setTimeout(fit, 100);
				}
			}
			fit();
		});
		$(this).triggerHandler('load');
	});
});
