// ----- Game Specific Variables ----- //var Title = "Sign Language Numbers - Association"; // Name of gamevar Associations = 10; // Total number of unique associationsvar ImageWidth = 125; // Width of imagesvar ImageHeight = 125; // Height of imagesvar ImagesPerRow = 7; // Number of images per rowvar ImageExt = ".gif"; // File Extension used for images (Example: .jpg or .gif)// ----- Border Specific Variables ----- //var UseBorder = 1; // 0 = Off  1 = Onvar BorderCornerWidth = 7; // Width of Border Cornervar BorderCornerHeight = 7; // Height of Border Cornervar BorderHorizontalWidth = 125; // Width of Horizontal Bordervar BorderVerticalHeight = 125; // 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 = "#6666FF"; // Background color when game starts.var CompletedBGColor = "#FF6666"; // Background color when game is completed.var WidthBetweenImages = 2; // Width between each imagevar BeforeWrongTimer = 1; // Length in seconds before wrong indication is displayed.var WrongTimer = 1; // Length in seconds that wrong indicator will be displayed.var ImagesBeginAs = 2; // 1 = Hidden 2 = Displayed// ----- Debugging Options ----- //// 1 = On   2 = Off //var OptionRevealImages = 2; // Reveal Images Option