Create node--525.tpl.php separate template file, replace 525 with your node id, and then add javascript to the section of the chapter.
Add this code in the template file
<?php function YOURTHEME-NAME_preprocess_page(&$vars, $hook) { if ((arg(0) == 'node') && (arg(1) == 'add' && arg(2) == 'CONTENT-TYPE')) { $vars['template_files'][] = 'page-node-add-CONTENT-TYPE'; } } ?>
source share