﻿// JavaScript Document
var setStyle = new Array();

var INITIAL_STYLE = 'menulink';
var FOCUSING_STYLE = 'menuselected';
////////////////////////////////////////////////////////////////////
//Button constructor
////////////////////////////////////////////////////////////////////
function returnStyle(){

	for (i=0; i<arguments.length; i++){
		if (currentFileName() == arguments[i]){
			return FOCUSING_STYLE;
		}
		
	}
	return INITIAL_STYLE;
		
}

function currentFileName(){
	var cfn = location.pathname;
	var x = new Array()

	x = cfn.split("\\");
	return x[x.length-1];
}


function main(){}

setStyle[0] = returnStyle('b5_index.html' );
setStyle[1] = returnStyle('b5_intro.html');
setStyle[2] = returnStyle('b5_seminars.html');
setStyle[3] = returnStyle('b5_training.html');
setStyle[4] = returnStyle('b5_citigroup.html');
setStyle[5] = returnStyle('b5_enrollment.html');
setStyle[6] = returnStyle('b5_publications.html','b5_publications2.html');
setStyle[7] = returnStyle('b5_surveys.html','b5_surveys2.html');
setStyle[8] = returnStyle('b5_library.html');
setStyle[9] = returnStyle('b5_inauguration2007.html');
setStyle[10] = returnStyle('b5_contactus.html');





