/* site parameters script - customize at setup */

var namespace = "irt";

// topnavArray contains parameters representing the tab menus ('tn01' ) and submenus ('sn01')
// maximum 10 each tn and sn; styles.css must contain declarations for each tn and sn
var topnavArray = ['tn01','tn02','tn03','tn04','tn05','tn06','sn01'];

// subnavArray contains parameters for pop-up submenus: 1. name, 2. index of parent menu (ZERO based) 
// example: ['sn01',1] for a submenu in the second menu (home tab doesn't count); leave brackets empty if no submenus 
var subnavArray = ['sn01',2];



///  ******* No need to change the below, unless you want to customize per site. ***********

// Turns on/off the topnav script. Set to true if the site uses a top nav; False if not. 
var topNavExistence = false; 

// Define the extensions used in header.htm for Top Nav
var containerExt = 'Container';

var divExt ='Div';

// Define the CSS styles for the Rows in Top Nav dropdowns

var NavTopOver = 'NavTopOver';

var NavTopOff = 'NavTopOff';

// Define images for left nav

var leftNavSpacerImage = '/Templates/images/spacer.gif';

var leftNavActiveImage = '/Templates/images/arrow.gif';

var leftNavImageHeight = 7; 

var leftNavImageWidth = 8;

var leftNavImageVspace = 5;

//Path to template files 
var TPath = '/Templates/'+namespace+'/';