// 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('/'+'decoboxes'+'/') > -1) { 
	thissection    = 'decoboxes'; 
	sectpath   = thissection +'/';
	//sectionnav = decoboxesnav;
}
if (url.indexOf('/'+'greetingcards'+'/') > -1) { 
	thissection  = 'greetingcards'; 
	sectpath = thissection +'/';
	//sectionnav = greetingcardsnav;
}	
if (url.indexOf('/'+'digiimagery'+'/') > -1) { 
	thissection  = 'digiimagery'; 
	sectpath = thissection +'/';
	//sectionnav = digiimagerynav;
}
if (url.indexOf('/'+'webdesign'+'/') > -1) { 
	thissection  = 'webdesign'; 
	sectpath = thissection +'/';
	//sectionnav = webdesignnav;
}	
if (url.indexOf('/'+'consulting'+'/') > -1) { 
	thissection  = 'consulting'; 
	sectpath = thissection +'/';
	//sectionnav = consultingnav;
}	
if (url.indexOf('/'+'about'+'/') > -1) { 
	thissection  = 'about'; 
	sectpath = thissection +'/';
	//sectionnav = aboutnav;
}	
if (url.indexOf('/'+'contactinfo'+'/') > -1) { 
	thissection  = 'contactinfo'; 
	sectpath = thissection +'/';
	//sectionnav = contactinfonav;
}	
