// ----- Game Specific Variables ----- //var Title = "Faces - Concentration"; // Name of gamevar Images = 24; // Total number of unique imagesvar ImageWidth = 75; // Width of imagesvar ImageHeight = 75; // Height of imagesvar ImagesPerRow = 10; // Number of images per rowvar ImageExt = ".jpg"; // File Extension used for images (Example: .jpg or .gif)// ----- Border Specific Variables ----- //var UseBorder = 0; // 0 = Off  1 = Onvar BorderCornerWidth = 0; // Width of Border Cornervar BorderCornerHeight = 0; // Height of Border Cornervar BorderHorizontalWidth = 0; // Width of Horizontal Bordervar BorderVerticalHeight = 0; // Height of Vertical Border// ----- Look and Feel ----- //var DisplayTitle = 1; // Show title at top of page. 0 = Off  1 = Onvar DisplayCredits = 1; // Show footer at bottom of page. 0 = Off  1 = Onvar StartingBGColor = "#FFFF99"; // Background color when game starts.var CompletedBGColor = "#FF3300"; // Background color when game is completed.var WidthBetweenImages = 10; // Width between each imagevar BeforeWrongTimer = .5; // Length in seconds before wrong indication is displayed.var WrongTimer = .5; // Length in seconds that wrong indicator will be displayed.var ImagesBeginAs = 1; // 1 = Hidden 2 = Displayed// ----- Debugging Options ----- //// 1 = On   2 = Off //var OptionRevealImages = 2; // Reveal Images Option