var currentAddress;
function separator(){
	var thisPage = this.location.href
	a = thisPage.split("#");
	if(a[1] != undefined){
	currentAddress = a[1];	
	}else{		
	currentAddress = "/top/";	
	}
	//alert(currentAddress);

}
separator();
