
$(document).ready(function() {
    $('#nav-main').hide();
    $('#content').hide();
    var path = $("meta[name=path]").attr("content");
    if(path == '/en/') {
document.location = "http://" + document.location.host + "/Content.Node/main.php"; 
    } else {
document.location = "http://" + document.location.host + "/Content.Node/main.php#" + path;
    }

});
