theres a few javascript errors reported, but I think the problem with
the menu is line 696 in the toggleKml function:

s.push(id[i])

this statement fails because the global variable s is no longer an
array, having been reused by buildModList on line 246 of newspage.js

s = o.sublist[si];

If you want to reuse the same variable name, I think declaring it
locally might work

var s = o.sublist[si];

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=en.

Reply via email to