/**
 * CMS-CONFIG
 * 
 * This file should be configured to match the behavior
 * of the selected server technology.
 */
 
  /**
   * This must be the name of the site or account.
   * This name MUST BE A STRING
   */
  var MOKA_NAME = "techniks.com.mx";
  
  /**
   * Moka CMS directory path relative to the domain.
   * Note: Remember cms and cms-data MUST exist on the same
   * directory level
   */
  var MOKA_PATH = "/";
  
  /**
   * Set here the title for your cms install,
   * which may be the name of your company.
   * This could be an html image.
   */ 
  var MOKA_TITLE = "<div style='background:black;border-radius:4px;padding:10px'><img src='/design/imgs/logo.png'></div>";

  var MOKA_BG = 'black';
  /**
   * List of allowed fonts in the Moka CMS editor.
   * If object is empty, any font value will be allowed.
   * 
   * Format of object is as follows: {
   *   {
   *  "Arial": "Arial, Arial, Helvetica, sans-serif",
   *  "Arial Black": "Arial Black, Arial Black, Gadget, sans-serif",
   *  "Comic Sans": "Comic Sans MS, Comic Sans MS, cursive",
   * }
   */
  var MOKA_EDITOR_FONTS = {
    "Arial":                "Arial, Arial, Helvetica, sans-serif",
    "Arial Black":          "Arial Black, Arial Black, Gadget, sans-serif",
    "Comic Sans":           "Comic Sans MS, Comic Sans MS, cursive",
    "Courier New":          "Courier New, Courier New, Courier, monospace",
    "Georgia":              "Georgia, Georgia, serif",
    "Impact":               "Impact, Impact, Charcoal, sans-serif",
    "Lucida Console":       "Lucida Console, Monaco, monospace",
    "Lucida Sans Unicode":  "Lucida Sans Unicode, Lucida Grande, sans-serif",
    "Palatino Linotype":    "Palatino Linotype, Book Antiqua, Palatino, serif",
    "Tahoma":               "Tahoma, Geneva, sans-serif",
    "Times New Roman":      "Times New Roman, Times, serif",
    "Trebuchet MS":         "Trebuchet MS, Helvetica, sans-serif",
    "Verdana":              "Verdana, Verdana, Geneva, sans-serif",
    "Symbol":               "Symbol, Symbol",
    "Webdings":             "Webdings, Webdings",
    "Windings":             "Wingdings, Zapf Dingbats",
    "MS Sans Serif":        "MS Sans Serif, Geneva, sans-serif"
  };
  
  /**
   * List of allowed classes and format tags.
   * Names starting with a dot (.) represent styles,
   * names without a dot prefix represent format tags. e.g.
   * 
   * Note: The title may represent a string in the strings object.
   * {
   *   "h1": "Header 1",
   *   ".nice": "Nice format"
   * }
   */
  var MOKA_EDITOR_STYLES = {
    "div": "none",
    "p": "paragraph",
    "h1": "title1",
    "h2": "title2",
    "h3": "title3",
    "pre": "preText"
  };
  
  /**
   * Array of colors that will be applied to
   * text, borders and backgrounds
   */
  var MOKA_THEME_COLORS = [
   "white", "black", "maroon", "red", "orange", "yellow", "olive", 
   "purple", "fuchsia", "lime", "green", "navy", "blue", "aqua", 
   "teal", "silver", "gray"
  ];
  
  /**
   * Number of styes to show in the ribbon as
   * primary options. Styles after this number
   * will be available in the dropdown menu option.
   */
  var MOKA_EDITOR_STYLES_AMOUNT = 5;
  
  /**
   * Absolute path to content display scripts
    * [ID]    Will be replaced by the Content->idcontent value
    * [TITLE] Will be replaced by the Content->title value
   */
  var MOKA_CONTENT_LINK = "/content/[ID]/[TITLE].html";
  
  /**
    * Absolute path to category display scripts
    * [ID]    Will be replaced by the Catgory->idcategory value
    * [NAME]  Will be replaced by the Category->name value
    */
  var MOKA_CATEGORY_LINK = "/category/[ID]/[NAME].html";
     
  /**
   * This variable should contain the path to the server
   * support system for calls.
   * 
   * The specification of the behavior for this script
   * is listed in /cms/server/spec/caller.txt
   */
  var MOKA_CALL = "/cms-data/call.php";
  
  
  

