top.globals = {};

top.globals.hasFlash = -1;

top._detached = 0;
top.playlist = null;
// whether the movie is the only thing on the screen
top.popcorn = 0;

top.mapScale = 1.0;
top.mapVisible = 1;

// for when you collapse the map
top.storeMapHTML = '';

// the web dir prefix. main sets it, b/c it comes from perl
top.globals.W = 'substitutethis';
// deprecated
top.W = 'substitutethis';

// set by main.
top.globals['monkeysez'] = '';



/*

var pages = new Array();
pages['1'] = 'splash';
pages['make_monkey_watch'] = 'movies';
pages['make_monkey_dance'] = 'music';
pages['make_monkey_go'] = 'concerts';
pages['make_monkey_read'] = 'about';
pages['make_monkey_cry'] = 'misc';
pages['make_monkey_see'] = 'pictures';
pages['make_monkey_paypal'] = 'music';
pages['make_monkey_paypal2'] = 'music';
top.globals.pages = pages;

// some actions, e.g. music, use all three table cells, some, e.g., movies,
// only one. if we are showing two cells of music and one of movies then
// both music and movies images should light up.
if (! top.globals.shown) {
    var shown = new Array(3);
    shown = ['about', 'about', 'concerts'];
    top.globals.shown = shown;
}

// which table cell
// why here AND perl? take one out!
var shownPerAction = {};
shownPerAction.splash = [];
//shownPerAction.movies = [0, 0, 1];
shownPerAction.movies = [1, 0, 0];
shownPerAction.music = [1, 1, 1];
shownPerAction.concerts = [0, 0, 1];
shownPerAction.about = [1 , 1 , 1];
shownPerAction.misc = [];
shownPerAction.pictures = [1, 1, 1];
top.globals.shownPerAction = shownPerAction;
*/

top.name = 'really the toppest top';

top.globals.textNavForJsDisplay = 'none'

