Are you sure that it is not you or another plugin that is adding the jQuery?
I just had a look at the plugin you linked to, and it just calls the jQuery you registered to in WordPress.
Example line 402 in easy-fancybox.php
:
wp_enqueue_script('jquery.fancybox', plugins_url(FANCYBOX_SUBDIR.'/fancybox/jquery.fancybox-'.FANCYBOX_VERSION.'.pack.js', __FILE__), array('jquery'), FANCYBOX_VERSION);
jQuery is loaded as a dependency in that.
Look in your theme if you deregistered jQuery (using wp_deregister_script('jquery')
)and registered it again to use Google's CDN.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…