$().ready(function() {
	$('#ex5a')
		.jqDrag('.dragHandle')
		.jqResize('.resizeHandle')
		.jqm({
			trigger: 'a.remote',
			ajax: '@href',
			target: '.jqmdMSG',
			overlay: 0, /* disables overlay */
			closeClass: 'CLOSEME'
	  	},
		function(h) { /* definition of an "on open" function */
			h.w.css('opacity',1).slideDown();
		},
		onClose /* pointer to an "on close" function */
	);
});

function onClose(h) {
	h.w.fadeTo(680,0.15,function(){ 
 		$(this).jqmClose(); 
		 
	});
}
