> Site is located atwww.fhitestsite.com/mdctest

Find out how to see the javascript errors in your browser, it will
help development ; I get two

On initial load, "ctaLayer is not defined"
because you really don't have anything called ctaLayer when attempting
     google.maps.event.addListener(ctaLayer, ....

When clicking the 'today' checkbox, "showToday is not defined"
because you defined your showToday() function locally inside your
window.onload function.  When the onload function finishes setting up
the map, showToday() is no longer available.  Define it in global
scope instead.
You'll need to look at the scope of the variables it uses, as well

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.

Reply via email to