// *****************************************************************************
// **                                SETTINGS                                 **
// *****************************************************************************

// 'linka' use this if part of the URL is the same in ALL the links
// In this example all the files are in a subfolder called 'pages'
linka='';

// the filename of the page the menu appears in eg 'menu.htm'
thisPage='menu.htm';

// Do you want to use images for the category bullets?
// If so then specify the path to your images folder from the menu page
imgPath='images/';

// do you want to use images for the category bullets?
lev1img='yes';					// insert yes or no

// give image names and dimensions
lev1OpName='open.gif';			// open image name
lev1OpHeight='10';				// image height
lev1OpWidth='19';				// image width

lev1ClosName='closed.gif';		// closed image name
lev1ClosHeight='13';			// image height
lev1ClosWidth='19';				// image width

// do you want to use images for the sub-category bullets?
lev2img='yes';		// insert yes or no

// give image names and dimensions
lev2Name='bullet.gif';			// image name
lev2Height='10';				// image height
lev2Width='29';					// image width

// do you want to use a text character for the sub-category bullets?
lev2Char='no';		// insert yes or no

// set bullet character for level 2 bullets
bullet = '&#155; ';

// base target - the frame that the links are targeting
base = 'main';

// *****************************************************************************
// **                             END OF SETTINGS                             **
// *****************************************************************************

// pulls 'page' variable out of URL - do not alter
	var x = 0
	page = location.search.substr(1).split("?")
	for (x=0;x<=page.length;x++) {
		eval(page)
		}
page = escape(page);
page = page.slice(7);

// do not alter this bit
function subMenu(name,linkb) {
 this.name = name;
 this.linkb = linkb;
}
document.write('<BASE target="' + base + '">');

// *****************************************************************************
// **                             BUILD MENU DATA                             **
// *****************************************************************************

// About ATI Menu
if (page=='aboutati') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Mission','mission.htm');
thisMenu[1] = new subMenu('Board of Directors','board.htm');
thisMenu[2] = new subMenu('Staff','staff.htm');
}

// Membership Menu
if (page=='membership') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Benefits','benefits.htm');
thisMenu[1] = new subMenu('Membership Application','memberform.htm');
}

// Publications Menu
if (page=='publications') {
thisMenu = new Array();
thisMenu[0] = new subMenu('For Members Only','pubsmems.htm');
thisMenu[1] = new subMenu('Samples for Non-Members','nonmempubs.htm');
thisMenu[2] = new subMenu('Other Reports','otherreports.htm');
}

// Conferences Menu
if (page=='conferences') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Conference Information','Conference.htm');
thisMenu[1] = new subMenu('Conference Registration','conferenceregistration.htm');
}

// Tax Info Links Menu
if (page=='taxinfo') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Local Government','links.htm#Local');
thisMenu[1] = new subMenu('State of Idaho','links.htm#State');
thisMenu[2] = new subMenu('Federal','links.htm#Fed');
thisMenu[3] = new subMenu('Affiliate Organizations','links.htm#Affiliate');
}

// Other Links Menu
if (page=='otherlinks') {
thisMenu = new Array();
thisMenu[0] = new subMenu('American Legislative Exchange Council','http://www.alec.org/');
thisMenu[1] = new subMenu('Citizens for Tax Justice','http://www.ctj.org');
thisMenu[2] = new subMenu('Committee on State Taxation','http://www.statetax.org/');
thisMenu[3] = new subMenu('Council of State Governments','http://www.csg.org/');
thisMenu[4] = new subMenu('Federation of Tax Administrators','http://www.taxadmin.org/');
thisMenu[5] = new subMenu('Institute for Professionals in Taxation','http://www.ipt.org/');
thisMenu[6] = new subMenu('International Association of Assessing Officers','http://www.iaao.org/');
thisMenu[7] = new subMenu('Multistate Tax Commission','http://www.mtc.gov/');
thisMenu[8] = new subMenu('National Association of Counties','http://www.naco.org/');
thisMenu[9] = new subMenu('National Association of State Budget Officers','http://www.nasbo.org/');
thisMenu[10] = new subMenu('National Education Association','http://www.nea.org/');
thisMenu[11] = new subMenu('National Conference of State Legislatures','http://www.ncsl.org/');
thisMenu[12] = new subMenu('National Governors\' Association','http://www.nga.org/');
thisMenu[13] = new subMenu('National League of Cities','http://www.nlc.org/');
thisMenu[14] = new subMenu('National Tax Association','http://www.ntanet.org/');
thisMenu[15] = new subMenu('Tax Foundation','http://www.taxfoundation.org');
thisMenu[16] = new subMenu('Urban Institute','http://www.urban.org');
thisMenu[17] = new subMenu('Urban Land Institute','http://www.uli.org');
}

// Contact Us Menu
if (page=='contactus') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Questions','mailto:holly_cawley@qwest.net');
thisMenu[1] = new subMenu('Comments','mailto:holly_cawley@qwest.net');
thisMenu[2] = new subMenu('Suggestions','mailto:holly_cawley@qwest.net');
}




