<script src="http://masterasevera.ru/sites/all/modules/bxslider/js/bxslider_ths.js?nsc8zw"></script>
<script src="http://masterasevera.ru/sites/all/modules/jquery_update/replace/jquery/1.8/jquery.min.js?v=1.8.3"></script>
function mytheme_preprocess_page(&$vars, $hook) {
drupal_set_html_head('<script type="text/javascript" src="path to your script here"></script>');
$vars['head'] .= drupal_get_html_head();
}
function mytheme_preprocess_page(&$variables) {
drupal_add_js(drupal_get_path('theme', 'MYTHEME') . '/js/yourjsfile.js', array(
'scope' => 'header',
'weight' => '15'
));
}
drupal_add_js(
drupal_get_path('module', 'bxslider') . '/js/bxslider_ths.js',
array(
'type' => 'file',
'scope' => 'footer',
'group' => JS_THEME,
'every_page' => FALSE
)
);
по идеи этого должно хватить для изменения веса.