/* Bible Versions
* This is used to provide a drop down list at the top of each chapter to allow
* quick switching. The list is done in JavaScript to avoid having to reload every
* version if a new version is added.
* See also search/include/bibleVersions.php
*/
var otVersions = new Array(
  "MienNewRoman",
  "MienThai",
  "MienLao",
  "WEB"
);
var otVersionNames = new Array(
  "Mien New Roman",
  "Thai Mien",
  "Lao Mien",
  "World English"
);

var ntVersions = new Array(
  "MienNewRoman",
  "MienThai",
  "MienLao",
  "WEB"
);
var ntVersionNames = new Array(
  "Mien New Roman",
  "Thai Mien",
  "Lao Mien",
  "World English"
);

// TODO - use version fonts, not lang fonts
var versionFonts = new Array(
	"'Times New Roman','Times','serif'",
	"'Cordia New', 'Verdana', 'Tahoma', 'serif'",
	"'JG Basic2 Lao Opentype', 'JG Basic Lao Opentype', 'Phetsarath OT', 'Saysettha OT','Saysettha Unicode'",
	"'Times New Roman','Times','serif'"
);

var font_ium = "'Times New Roman','Times','serif'";
var font_en = "'Times New Roman','Times','serif'";

function siteOnLoad()
{
}

function fixFeedback(textLink)
{
  document.getElementById(textLink).setAttribute("href",
    "ma" + "ilto:mienb" + "ible"  + "@" + 
     "thaibible.or" + ".th");
}

