function choose() {
	var url = window.location.href;
	fileName = url.substring(url.lastIndexOf("://") + 3, url.length);
	switch (fileName) {
		case "lamemoire.hu/":
			window.location.href = "http://lamemoire.hu/lamemoire/home.html";
			break;
		case "azeskuvoivideo.hu/":
			window.location.href = "http://azeskuvoivideo.hu/azeskuvoivideo/az_eskuvoi_video.html";
			break;
		case "www.lamemoire.hu/":
			window.location.href = "http://lamemoire.hu/lamemoire/home.html";
			break;
		case "www.azeskuvoivideo.hu/":
			window.location.href = "http://azeskuvoivideo.hu/azeskuvoivideo/az_eskuvoi_video.html";
			break;
		default: window.location.href = "http://lamemoire.hu/lamemoire/home.html";
	}
}
window.onload = function() {
	choose();
}