It it will help, here's the current jQuery comment set from the functions.php:
<?php
function load_js() {
if (!is_admin()) {
wp_deregister_script('jquery');
// load the local copy of jQuery in the footer
wp_register_script('jquery', '/wp-includes/js/jquery/jquery.js', false, '1.3.2', true);
wp_enqueue_script('jquery');
// load JS files
wp_enqueue_script('selectbox', get_childTheme_url() . '/js/jquery.selectbox-0.5.js', array('jquery',), '0.5', true);
wp_enqueue_script('easing', get_childTheme_url() . '/js/jquery.easing.1.3.js', array('jquery'), '1.3', true);
wp_enqueue_script('bxslider', get_childTheme_url() . '/js/jquery.bxSlider.min.js', array('jquery', 'easing'), '1.0', true);
wp_enqueue_script('custom', get_childTheme_url() . '/js/custom.js', array('jquery', 'bxslider', 'easing'), '1.0', true);
}
}