$(document).ready(function(){

	//onLoad callback
	var addCloser = function(hash){
	//if (!$("#jqmCloser")) {
		hash.w.prepend('<a href="#" id="jqmCloser"><img src="/images/jqmodal-close.gif" style="float: right"></a>')
		.jqmAddClose(this);
		
		var modalHeight = $(".jqmWindow").height();
		var winHeight = $(window).height();
		
		if (winHeight < modalHeight + 100){
			$(".jqmWindow").css("height", winHeight - 200);
		}
	//}
	};
	
	//add container for jqmodal
	$("<div>").attr("id", "modal")
		.attr("class", "jqmWindow")
		.hide()
		.jqm({ajax:'/help/adaptive-system-overview.aspx #adaptivesystem', trigger: 'a.adaptivesystem', onLoad: addCloser})
		.appendTo("body");

		//var winheight = $(window).height() - 150;
		
		//$(".jqmWindow").css("height", winheight);

});//onready