
/* from			: http://dev.iceburg.net/jquery/jqModal/
 * trigger	: .jqModal
 * close		: .jqmClose
 */
$(function() {
	$('body').prepend('<div class="jqmWindow" id="modal"></div>');
	
	$('#modal').jqm({
		modal: false,
		overlay: 70,
		ajax: '@href',
		ajaxText: '<div class="loading"></div>'
	});
});
