If you want to see if jquery version is the issue, paste this in your functions.php file:
//get jquery from google
function jquery_init() {
if ( !is_admin() ) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js', false, '1.6.2');
wp_enqueue_script( 'jquery' );
}
}
add_action( 'after_setup_theme', 'jquery_init' );
Actually, I just noticed this script does not load jquery from google if in admin area. Might not be a solution. You could leave out the if statement and the first closing bracket.