jQuery.noConflict();

function sizeIFrame() {
	var helpFrame = jQuery("#iframePage");
	var innerDoc = (helpFrame.get(0).contentDocument) ? helpFrame.get(0).contentDocument : helpFrame.get(0).contentWindow.document;
	helpFrame.height(0);
	helpFrame.height(innerDoc.body.scrollHeight + 35);
}

jQuery(function() {
	jQuery("#iframePage").load(sizeIFrame);
});