diff --git uc_store/countries/thailand_764_1.cif uc_store/countries/thailand_764_1.cif
index 7327804..27c2c77 100644
--- uc_store/countries/thailand_764_1.cif
+++ uc_store/countries/thailand_764_1.cif
@@ -5,10 +5,10 @@
  * First implement hook_install() using the name of the country as the base of
  * the function name.
  */
-function Thailand_install() {
+function thailand_install() {
   // Make the entry in the country table.
   // VALUES = Country ID, Country Name, 2-digit Code, 3-digit Code, File Version
-  db_query("INSERT INTO {uc_countries} VALUES (764, 'Thai', 'TH', 'THA', 1)");
+  db_query("INSERT INTO {uc_countries} VALUES (764, 'Thailand', 'TH', 'THA', 1)");
 
   // Make the entries in the zones table.
   db_query("INSERT INTO {uc_zones} (zone_country_id, zone_code, zone_name) VALUES "
@@ -103,7 +103,7 @@ function Thailand_install() {
  * Add a new case for each version update, and be sure to always include the
  * latest changes in the install function.
  */
-function Thailand_update($version) {
+function thailand_update($version) {
 }
 
 /**
@@ -113,5 +113,5 @@ function Thailand_update($version) {
  * only necessary for other things you may have included in your country's
  * installation process.
  */
-function Thailand_uninstall() {
+function thailand_uninstall() {
 }
