//Flight Packages
CityPilotCruise= new Object();
CityPilotCruise.Price   =199;
CityPilotCruise.Shipping=0;
CityPilotCruise.Name	= "City Pilot Cruise";
CityPilotCruise.Description	= "Two hour flight instruction experience, includes one hour of flight time.";
CityPilotCruise.Item_code	= "CityPilotCruise";
CityPilotCruise.ReturnPage = "index.htm"

CityPilotEscape= new Object();
CityPilotEscape.Price   =399;
CityPilotEscape.Shipping=0;
CityPilotEscape.Name	= "City Pilot Escape";
CityPilotEscape.Description	= "Three hour lesson with Two hours flight time and lunch.";
CityPilotEscape.Item_code	= "CityPilotEscape";
CityPilotEscape.ReturnPage = "index.htm"

PilotAdventure= new Object();
PilotAdventure.Price   =99;
PilotAdventure.Shipping=0;
PilotAdventure.Name	= "Pilot Adventure";
PilotAdventure.Description	= "60 minute flight instruction, including 30 minutes of flight time.";
PilotAdventure.Item_code	= "PilotAdventure";
PilotAdventure.ReturnPage = "index.htm"


//Do not change this section - This is used to store the user's phone number
Customer= new Object();
Customer.Price   = 0;
Customer.Shipping= 0;
Customer.Name	= "Phone";
Customer.Description	="Number used by the trucking company to contact customer for delivery. Must have for delivery.";
Customer.Item_code	=""; //used to store the phone number
Customer.ReturnPage = "electricfans.html"