$(document).ready(function() {
    $("#vossen-alt").hide();

    var path = $("meta[name=path]").attr("content");
    if(path == '/de/') {
        document.location = "http://" + document.location.host + "/main.php"; 
    } else {
        document.location = "http://" + document.location.host + "/main.php#" + path; 
    }
});