using google.load("jquery", "1.4.2");

using google.load("jquery", "1.4.2");

I have a demo script that uses this code to facilitate Google translations.

  1. <script type="text/javascript" src="http://www.google.com/jsapi"></script>
    <script type="text/javascript">google.load("jquery", "1.4.2");</script>
    <script type="text/javascript" src="http://joomla-gtranslate.googlecode.com/svn/trunk/mod_gtranslate/jquery-translate.js"></script>



If I have other plugins that are "hooked" to jquery 1.4.2 using this line:
  1. <script type="text/javascript" src='js/jquery.js'></script>
How will the loading from Google affect my other plugins?

If I use ONLY the google.load, it breaks all my other plugins completely.