I get an error "jQuery is not defined", so I'd try loading
jquery-1.6.1.min.js before anything else which might depend on it
(like the gomap, lightbox and nivo extensions).
I got the error using Firebug. The gomap script doesn't know about a
variable called "jQuery".
The other things that depend on jQuery are loaded after it. The gomap
utility script is loaded before the main jQuery script. jQuery needs
to be loaded before anything that depends on it.
Note that there may be other things wrong, but getting the order right
will at least eliminate script dependencies.
<script type="text/javascript" src="http://.....ie/js/jquery-1.6.1.min.js"></script> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript" src="http://www......ie/js/jquery.gomap-1.3.2.js"></script>
still not showing up.
don't have firebug on my laptop so can't check the dom like that.