// these are hourly prices.  Adjust, and everything falls into place on the client side
var instr=45;	// hourly time with a regular instructor
var cfi=55;		// Chief Flight instructor (used on multimotor training
var c152=115;	// hourly time in a cessna 152
var c172=130;	// hourly time in a Cessna 172
var twin=245;	// hourly rate for GZMV (PA-30)
var sim = 45;	// hourly time in the simulator
var ground_school_60h=400;	// cost for regular ground school, assuming a classroom of students
var ground_school_material=320;	// cost for the misc BS you need to buy for PPL
var ground_school_solo_hrly=28;	// in case you're a rich snot and don't like learning with other students
var commercial_ground_school_80h=800;	// commercial group ground school

// Document write (short form) 
function dw(mytext) {
	document.write(mytext);
}
// dollars document write
function ddw (mytext) {
	document.write("$");
	dw(mytext);
}
