function writeInitiativeButtons(whichSection){
	var theIndex=0;
	for(var i=0;i<initiatives.length;i++){
		if(document.location.href.indexOf(initiatives[i])>-1){
			theIndex=i;
			break;
		}
	}
	document.write('<table border="0" cellpadding="0" cellspacing="0" width="528"><tr>');
	document.write("<td width='50%' align='left'><a href='../../html/plan/"+(theIndex==0?initiatives[initiatives.length-1]:initiatives[theIndex-1])+"' onMouseOver=\"MM_swapImage('prev','','../../includes/site_images/misc/init_prev_"+whichSection+"_over.gif',0)\" onMouseOut='MM_swapImgRestore()'><img src='../../includes/site_images/misc/init_prev_"+whichSection+".gif' width='137' height='24' align='Previous Initiative' name='prev' id='prev' border='0' /></a></td>");
    document.write("<td width='50%' align='right'><a href='../../html/plan/"+(theIndex==(initiatives.length-1)?initiatives[0]:initiatives[theIndex+1])+"' onMouseOver=\"MM_swapImage('next','','../../includes/site_images/misc/init_next_"+whichSection+"_over.gif',0)\" onMouseOut='MM_swapImgRestore()'><img src='../../includes/site_images/misc/init_next_"+whichSection+".gif' width='116' height='24' align='Next Initiative' name='next' id='next' border='0' /></a></td>");
  	document.write('</tr></table>');
}