var nsInclude = {
	init: function() {
		var my_html = location.pathname;
		var include_html = my_html.replace(/\/[^\/]+_nsInc_(.+)/i,'/ajaxlib/$1');
		if(my_html != include_html && ! include_html.match(/\.\.\//)) {
			$.ajax({url: include_html, type: 'GET', dataType: 'html', success: function(html){$('#nsInclude').html(html);}});
		}
        }
};
