$('document').ready(function () {
	$('a.nm-prop-link').click(function () { this.blur(); change_property($(this).attr('rel')); return false; })
});

var change_property = function (pid)
{
	$('div.nm-prop').hide().filter('#nm-prop-' + pid).show();
	$('a.nm-prop-link').parents('li').removeClass('c').end().filter('[rel=' + pid + ']').parents('li').addClass('c');
};