function format(num)
<!-- function format based on code from Tim Wallace.  (Thanx)
   {

   finished=Math.floor(num)+".";

   var base=100*(num-Math.floor(num))+0.5;

   finished += Math.floor(base/10);

   finished += Math.floor(base%10);

   return finished;

   }
   
Year="2010"

Term1="Term 1"
StartDate1="Feb 3"
EndDate1="March 31"
Termlength1="8 to 9 weeks"

Term2="Term 2"
StartDate2="April 21"
EndDate2="June 23"
Termlength2="10 weeks"

Term3="Term 3"
StartDate3="July 28"
EndDate3="September 22"
Termlength3="9 weeks"

Term4="Term 4"
StartDate4="October 11"
EndDate4="December 8"
Termlength4="9 weeks"



<!-- Monday

class1="All Levels - All Ages"
time1="6.30 pm"
day1="Monday"
sku1="all_levels_Monday"
cost1=00
cost1=format(cost1);

class2="Beginners - All Ages"
time2="6.30 pm"
day2="Monday"
sku2="Beginners_6.30pm_Monday"
cost2=100
cost2=format(cost2);

class3="Advanced"
time3="7.30 pm"
day3="Monday"
sku3="Advanced_Monday"
cost3=120
cost3=format(cost3);

<!-- Tuesday

class4="Intermediate - 3rd and  4th years"
time4="4.30 pm"
day4="Tuesday"
sku4="3rd&4th_years_4.30pm_tuesday"
cost4=00
cost4=format(cost4);


class9="For dancers of other disciplines"
time9="6.30/7.30 pm"
day9="Tuesday"
sku9="Other_disciplines_6.30pm_tuesday"
cost9=120
cost9=format(cost9);

<!-- Wednesday

class5="Beginners - All Ages"
time5="6.00 pm"
day5="Wednesday"
sku5="Beginners_6.00pm_Wednesday"
cost5=90
cost5=format(cost5);


class6="Beginners - All Ages"
time6="7.30 pm"
day6="Wednesday"
sku6="Beginners_7.30pm_Wednesday"
cost6=90
cost6=format(cost6);

class7="2nd year level - All Ages"
time7="6.05 pm"
day7="Wednesday"
sku7="2nd_year_6.05pm_Wednesday"
cost7=90
cost7=format(cost7);

class8="2nd year level - All Ages"
time8="7.05 pm"
day8="Wednesday"
sku8="2nd_year_7.05pm_Wednesday"
cost8=90
cost8=format(cost8);

surcharge=4
surcharge=format(surcharge);