﻿// JScript File

//Sets the indent and bullet type for the currently selected page

var urlPath = window.location.pathname;
var start = urlPath.lastIndexOf('/')+1;
var finish = urlPath.lastIndexOf('.aspx');

if((start > 0)&&(finish > 0)){
    var obj = urlPath.substring(start, finish);
    var flip = document.getElementById(obj);
    
    if(flip != null){
        flip.style.listStyleImage = "url('../images/em_graphics/arrow_white_transparent_selected.gif')";
        flip.style.marginLeft = "15px";
    }
    
    //if there are subpages to the current parent
    obj += "_div";
    flip = document.getElementById(obj);
    if(flip != null){
        flip.style.display = '';
    }
}

