Remove Jquery from wordpress using wp_deregister_script

I use this function to get rid of the default jquery that is automatically included with wordpress always seems to give me issues

Drop this in functions.php or your theme


if( !is_admin()){
	wp_deregister_script('jquery');
	wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"), false, '1.6.2');
	wp_enqueue_script('jquery');
}