Including.jquery
if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11);
function my_jquery_enqueue() {
wp_deregister_script('jquery');
wp_register_script('jquery', "http://code.jquery.com/jquery-latest.min.js", false, '');
wp_enqueue_script('jquery');
}