function doIframe(){
	$('#loadingGif').hide();
	$('.autoHeight').each(function(){
		$(this).css('height', 'auto').css('display', 'block');
			var hght = $(this).contents().find("body").height();
		$(this).css('height', hght+30).unbind("load", doIframe).bind("load", doIframe);		
	});
}