// JavaScript Document
function Jump(d)
{
	var href = window.location.href;
	var fileName = href.substr(href.lastIndexOf('/')+1)
	var id = fileName.substring(0,fileName.length-5);	
	window.location.href=parseInt(id)+d+'.html';
}
