function menuJS (path, selected) {
	this.path = path;
	this.selected = selected;
	document.getElementById('border_'+this.selected).style.display = 'block';
	this.over = function(n)	{
		document.getElementById('border_'+n).style.display = 'block';
	}
	
	this.out = function(n) {
		if(n != this.selected) {
			document.getElementById('border_'+n).style.display = 'none';
		}
	}
	
	this.visit = function(url) {
		location.href = this.path+url;
	}
}