
	var href = document.location.href;
	
	if (href.indexOf('?id=') != -1) {
		
		// get actual date
		var now = new Date();
		var month = now.getMonth() + 1;
		if (month < 10) month = "0" + month;
		var year = now.getYear() - 100;
		if (year < 10) year = "0" + year;
	
		// create link code			
		var linkcode = year + month;
		
		// jump to actual month
		if (href.indexOf("#") == -1) document.location.href = "#" + linkcode;
		
	}

