﻿function showGallery(name) 
{
    window.open("/Gallery.aspx?name=" + name, "Finder", "menubar=no,width=920,height=800,toolbar=no, resizable=0");
}

function changePicture(el, pictureName) { el.src = '/Files/ContentMedia/Images/' + pictureName; }

$(document).ready(function() {
    var url = window.location.href;
    var tab = url.split('/');
    var l = tab.length;
    //$(".UnderBarLeft:has(a[href$='" + tab[l - 2] + "/" + tab[l - 1] + "'].More)").attr("class", "UnderBarSelected")
    $(".BarLeftCorner ~.UnderBarLeft:has(a[href$='" + tab[l - 2] + "/" + tab[l - 1] + "'].More):parent").prev().attr("class", "BarLeftCornerSelected");

    $(".selectedmapNode").prev().prev().attr("class", "mapNodeBeforeSelected");
});



