// Determine thissection of the site you are currently at

//  global variables
var thisthissection = '';
var sectpath        = '';
var sectionnav      = '::';

// Determine thissection of site
var url = parent.location.href;
if (url.indexOf('/'+'home'+'/') > -1) { 
	thissection    = 'home'; 
	sectpath   = thissection +'/';
	//sectionnav = homenav;
}
if (url.indexOf('/'+'bio'+'/') > -1) { 
	thissection    = 'bio'; 
	sectpath   = thissection +'/';
	sectionnav = bionav;
}
if (url.indexOf('/'+'wltimages'+'/') > -1) { 
	thissection  = 'wltimages'; 
	sectpath = thissection +'/';
	sectionnav = wltimagesnav;
}	
if (url.indexOf('/'+'gallery'+'/') > -1) { 
	thissection  = 'gallery'; 
	sectpath = thissection +'/';
	sectionnav = gallerynav;
}	
if (url.indexOf('/'+'pprints'+'/') > -1) { 
	thissection  = 'pprints'; 
	sectpath = thissection +'/';
	sectionnav = pprintsnav;
}	
if (url.indexOf('/'+'exhibits'+'/') > -1) { 
	thissection  = 'exhibits'; 
	sectpath = thissection +'/';
	sectionnav = exhibitsnav;
}	
if (url.indexOf('/'+'links'+'/') > -1) { 
	thissection  = 'links'; 
	sectpath = thissection +'/';
	sectionnav = linksnav;
}
if (url.indexOf('/'+'contactinfo'+'/') > -1) { 
	thissection  = 'contactinfo'; 
	sectpath = thissection +'/';
	sectionnav = contactinfonav;
}