var hdr;

switch(thisPage) {
	case 'index.html':
		hdr = 'welcome';
		break;					
	case 'about.html':
		hdr = 'about';
		break;					
	case 'whatwedo.html':
		hdr = 'whatwedo';
		break;					
	case 'policies.html':
		hdr = 'policies';
		break;
	case 'stress_relief.html':
		hdr = 'stress';
		break;
	case 'contact.html':
		hdr = 'contact';
		break;
	case 'tobacco-cessation.html':
		hdr = 'cessation';
		break;
	default:
		hdr = 'welcome';
		break;															
}

if (thisPage != 'index.html') {
	document.write("<a href=\"index.html\">");
}
document.write("<img src=\"images/hdr_"+hdr+".jpg\" width=\"515\" height=\"159\" border=\"0\" alt=\"\">");
if (thisPage != 'index.html') {
	document.write("</a>");
}