
var url = document.location.href;
var hostname = document.location.hostname;

x = url.replace('http://'+hostname,'');
if (x.indexOf('#page') == -1 && x.length > 1)
{
	if (x.search('/en/') == 0)
	{	
		if (x == '/en/') {
			window.location = 'http://' + hostname + '/en/#';
		} else {
			window.location = 'http://' + hostname + '/en/#page=' + x;
		}
	} else {
		window.location = 'http://' + hostname + '#page=' + x;
	}
}

