/*
	jQuery('a').each(function() {
		var href = this.href;
		if (href.indexOf('http://') == -1) {
			this.href = '#!' + href;
		}
		if (href.indexOf(plxHome) >= 0) {
			var path = href.replace(plxHome, '');
			this.href = '#!/' + path;
			jQuery(this).click(function() {
				jQuery('#main').load(plxRoot + 'plxAjax/load?path=/' + path);
			});
		}
	});
*/
