

var defaultName = "Name of Room";

var roomPrices=new Array();
roomPrices[0]= 40;  //Medium
roomPrices[1]= 40;  //Large
roomPrices[2]= 20;  //Small

var movePrices=new Array();
movePrices[0]= 0;  // No move
movePrices[1]= 0;  // Light Move
movePrices[2]= 10;  // heavy move

var preVacuumPrice = 5;
var quickDryPrice = 10;
var scotchGuardPrice = 20;
var petEnzymePrice = 20;

var ecoDiscount = .5;  //discount rate for economy clean
var taxRate = .0825;  //Tax rate


