Hi Marcus, it has the function in header.php :
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head>
in the functions.php the following scripts are added using the function below:
function jg_register_js() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_enqueue_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js');
wp_enqueue_script('jquery-ui-custom', get_template_directory_uri() . '/js/jquery-ui-1.8.5.custom.min.js', 'jquery');
wp_enqueue_script('fancybox', get_template_directory_uri() . '/js/jquery.fancybox-1.3.4.js', 'jquery');
wp_enqueue_script('hover-intent', get_template_directory_uri() . '/js/hoverIntent.js', 'jquery');
wp_enqueue_script('superfish', get_template_directory_uri() . '/js/superfish.js', 'jquery');
wp_enqueue_script('nudge', get_template_directory_uri() . '/js/link_nudge.js', 'jquery');
wp_enqueue_script('jg_custom', get_template_directory_uri() . '/js/scripts.js', 'jquery', '1.0', TRUE);
wp_register_script('tabs', get_template_directory_uri().'/js/jquery.tabbed-widget.js', array('jquery-ui-tabs')); // called in 'tabbed-blog.php' widget
}
}
add_action('init', 'jg_register_js');
I realise it's a theme issue, cuased by some conflicting js... but can't seem to fix it without breaking something else.