function ss() {
    stateList = new Array();
    
    
}

ss.prototype.getPageName = function() {
    state       =   stateList.pop();
    var pName   =   'unknown';
    if (state == null || state == "") {
        pName   =   'unknown';
    } 
    else {
        var pName   =   pageName[state];
        if (pName == null) {
            pName   =   state;
        }
    }
    return pName;
}


ss.prototype.push = function(state) {
    stateList.push(state);
}

ss.prototype.getLanguage = function() {
    return 'German';
}



siteCat =  new ss();


