// JavaScript Document
// Privides Goal Data for Campus Community Campaign website
// Copyright 2008 Dominion Fund, Old Dominion University
// Corey Wilkes '09

/*
This file contains all of the values used for the progress indicators on the Campus Comunity Campaign site.
To set the values replace the values accordingly.
BE SURE THAT ALL VALUES ARE WHOLE NUMBERS (1, 2, 3, ETC) AS WELL AS THEY SHOULD NOT CONTAIN CHARACTERS OTHER THAN NUMBERS.
Also all values should be followed by a semi-colon.

Correct: var FunGoal = 1436582;
INCORRECT: var FunGoal = 1,436,582;
INCORRECT: var FunGoal = 1436582

Once the values are changed, be sure to save the file.
*/

//Set Current Participation Here  !!!!!
var CurPar = 910;
//Set Participation Goal Here  !!!!!
var ParGoal = 975;
//Set Current Funding Here  !!!!!
var CurFun = 199061;
//Set Funding Goal Here  !!!!!
var FunGoal = 236355;