jQuery(document).ready(function() {
	jQuery('.jqmWindow').jqm({

		onShow: function(h) {
			h.w.fadeIn(888);
		},

		onHide: function(h) {
			h.o.remove();
			h.w.fadeOut(888);
		},
		
		modal: true,
		overlay: 25
	});
});
