function JSAddress(){
	
	//this.value = value;
	
	this.setValue = function(value){
		
		window.location.hash = "/" + value;
		
		$(document).scrollTop(0);
		
	}
	
	this.getValue = function(){
		if(value = window.location.hash){
			value = value.replace("#/", "");
			return value;
		}
		else{
			return false;
		}
	}

	this.onUrlChange = function(){
		
	}
}
