window.addEventListener( 'click', function (e) {

	var a = document.querySelectorAll(".hidden");
	if ( a.length > 0 ) {
		a[0].className = "";
		return;
	}
	
	var lastpart = document.location.href.split(/\//).pop();
	var n = parseInt(lastpart.replace(/\D/g, "") );
	if ( isNaN(n) || n == 0)
		n = 1;
	n++;
	document.location.href = n + ".html";
}, false );

