1
2
3
4
5
6
7
8
9
10
function _phptemplate_variables($hook, $variables) {
  switch ($hook) {
    case 'page':
      if (file_exists($my_script = path_to_theme() .'/MYNEWSCRIPT.js')) {
        drupal_add_js($my_script, 'theme')
      }
      $variables['scripts'] = drupal_get_js();
    break;
  }
}