var path = window.location.pathname;
	path.match("([^/]+)$");
var file = RegExp.$1;

var swapLinks = {
	'#navbar a' : function(el){
		var href = el.getAttribute('href', 2);
		if(href==file){
			el.className = "current";
			/* el.removeAttribute('href'); */
		}
	}
};
Behaviour.register(swapLinks);

