 function include_gmaps_api()
{
     var host, key;

     host = location.host;
     path = location.pathname;

     if(host == 'localhost') {
        key = 'ABQIAAAAjS6kTSXydBJ74-4UMrCNVhT2yXp_ZAY8_ufC3CFXhHIE1NvwkxR4tgqlcDtAzQEFo1pWMao5IL7GdQ';
     } else if (host == 'thoughtwax.com') {
        key = 'ABQIAAAAjS6kTSXydBJ74-4UMrCNVhT8YGbYDxlFyelxzuwPgV8kyg06lhS6_7EF4HZx6FIcw3113jD_3dFGnA';
     }

     // Include Google Maps API from maps.google.com
     document.write('<scr' + 'ipt src="http://maps.google.com/maps?file=api&v=1&key=' + key + '" type="text/javascript"></scr' + 'ipt>');
}

// Entry point.
include_gmaps_api();



