// 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('/'+'book'+'/') > -1) { 
	thissection    = 'book'; 
	sectpath   = thissection +'/';
	sectionnav = booknav;
}
if (url.indexOf('/'+'forparents'+'/') > -1) { 
	thissection  = 'forparents'; 
	sectpath = thissection +'/';
	sectionnav = forparentsnav;
}	
if (url.indexOf('/'+'mediacenter'+'/') > -1) { 
	thissection  = 'mediacenter'; 
	sectpath = thissection +'/';
	sectionnav = mediacenternav;
}
if (url.indexOf('/'+'comments'+'/') > -1) { 
	thissection  = 'comments'; 
	sectpath = thissection +'/';
	sectionnav = commentsnav;
}	
if (url.indexOf('/'+'links'+'/') > -1) { 
	thissection  = 'links'; 
	sectpath = thissection +'/';
	sectionnav = linksnav;
}