I use this code to load a javascript to create tabbed boxes with DOM Tabs
<?php
$theme_name= 'Thematic Child Theme';
function domtab_link() {
echo '<script type="text/javascript" scr="' . get_bloginfo('stylesheet_directory') . '/scripts/domtab.js"></script>' . "\n";
}
add_action('wp_head', 'domtab_link');
?>
I use this code mentioned above in my child theme thematic/thematic-child/functions.php . It does load the javascript in the source code, but does not work. Any ideas why?