$().ready(function() {
    $('#siteMapLink, #imgCloseSitmap').click(function(){
        if ($("#sitemap").is(":hidden")) {
            $("#seloader").show();
            $("#site_explorer_content").load("/loadsiteexplorer.html", function(){
                $("#seloader").hide();
            });
        }
        $("#sitemap").slideToggle("slow");
    });
    var cL = true ;
    $('#changeLocation').click(function () {
        if (cL){
            $("#LocationsView").show();
            cL = false ;
        } else {
            $("#LocationsView").hide("slow");
            cL = true ;
        }
      });
    $("#sitemap").bind("mouseleave",function() {
        $("#sitemap").slideUp("slow");
    });
});
function popUp(URL) {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=550,left = 212,top = 84');");
}
