heres the code that got everything working together nicely. All is well
PHP Code:
function add_jquery_tools() {
if ( !is_admin() ) {
wp_register_script('addons_script', 'http://cdn.jquerytools.org/1.2.5/all/jquery.tools.min.js', array('jquery'), '');
wp_enqueue_script('addons_script');
}
if ( !is_admin() ) {
wp_register_script('addons_javascript', get_bloginfo('url').'/wp-content/themes/mytheme/tooltips.js', false, '');
wp_enqueue_script('addons_javascript');
}
}
add_action('wp_print_scripts', 'add_jquery_tools');