// Copyright (C) 2005  Chris Halstead
//
// chris.halstead [at] gmail.com
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// The full text of the GPL is available at http://www.gnu.org/copyleft/gpl.html
//

// Variables used throughout the JavaScript area

var inches_in_mile = 63360;
var pi = 3.14159265358979;
var mm2in = .0393701;
var in2mm = 25.4;
var fudge = .965;
var rpm_col_width = 40;
var gear_col_width = 55;
//var gearDataURL = "./GearData.txt";
var gearDataURL = "http://dl.dropbox.com/u/130079/autox-tools/GearData.txt";
var gear_array = [ "FIRST_GEAR", "SECOND_GEAR", "THIRD_GEAR", "FOURTH_GEAR", "FIFTH_GEAR", "SIXTH_GEAR", "SEVENTH_GEAR" ];
var gear_names = [ "First Gear", "Second Gear", "Third Gear", "Fourth Gear", "Fifth Gear", "Sixth Gear", "Seventh Gear" ];
var defaultData = "4.30:7000:195:50:15:3.136:1.888:1.330:1.100:0.814::"
