//################# how many sections?

var numSections = 5
var sectionSaying = new Array( numSections+1 )

var linkTitle = new Array( numSections+1 ) //we're leaving the 0 position empty for easy reference later
var linkURL = new Array( numSections+1 ) //we're leaving the 0 position empty for easy reference later

for (i=0; i<numSections+1; i++)
{
	linkTitle[ i ] = new Array( 1 ); //again - the 0 position will be left empty for ease of page numbering.
	linkURL[ i ] = new Array( 1 );
}


var sectionTitle = new Array( numSections+1 )
var sectionURL = new Array( numSections+1 )


//#################### the titles for your sections!

sectionTitle[1] = "Understanding"
sectionTitle[2] = "Measuring"
sectionTitle[3] = "Heating"
sectionTitle[4] = "Links"
sectionTitle[5] = "Glossary"


//#################### the links for your sections!

sectionURL[1] = "index.htm"
sectionURL[2] = "clima_index.htm"
sectionURL[3] = "heat_index.htm"
sectionURL[4] = "link_index.htm"
sectionURL[5] = "NONE"




//################## the side links  (you'll need a block of links for each section!)
//###  to add a new link, simply copy a pair of the existing lines and alter the linkTitle and LinkURL
//###  you can change the saying at the top too if you like!
//###  the order of the links here is the order they will appear on the page
//###  to prevent odd behaviour make sure you number the pages the same


//###  section one


sectionSaying[1] = "Keep&nbsp;your&nbsp;cool!"


linkTitle[1].push("Energy&nbsp;&amp;&nbsp;Heat");
linkURL[1].push("coldenergy.htm")

linkTitle[1].push("Temperature");
linkURL[1].push("temperature.htm")

linkTitle[1].push("Pressure");
linkURL[1].push("pressure.htm")

linkTitle[1].push("Phase&nbsp;Change");
linkURL[1].push("boiling.htm")

linkTitle[1].push("Evaporation");
linkURL[1].push("vapcom.htm")

linkTitle[1].push("Vapour&nbsp;Compression&nbsp;Cycle");
linkURL[1].push("vapcomcyc.htm")

linkTitle[1].push("Simple&nbsp;Practical&nbsp;Cycle");
linkURL[1].push("practcyc.htm")

linkTitle[1].push("Practical&nbsp;Efficiency:&nbsp;COP ");
linkURL[1].push("practcop.htm")

linkTitle[1].push("Carnot");
linkURL[1].push("carnot.htm")

linkTitle[1].push("Carnot&nbsp;Cycle");
linkURL[1].push("ccycle.htm")

linkTitle[1].push("Evaporative&nbsp;Cooling");
linkURL[1].push("weteng.htm")



//###  section two

sectionSaying[2] = "Measure&nbsp;your&nbsp;cool!"


linkTitle[2].push("Efficiency");
linkURL[2].push("circeff.htm")

linkTitle[2].push("Capacity");
linkURL[2].push("capacity.htm")

linkTitle[2].push("ClimaCheck");
linkURL[2].push("climach.htm")


//###  section three


sectionSaying[3] = "Gather&nbsp;Free&nbsp;Heat!"


linkTitle[3].push("Pumping Heat");
linkURL[3].push("heatref.htm")

linkTitle[3].push("Heat Source");
linkURL[3].push("heatsource.htm")

linkTitle[3].push("Heat Delivery");
linkURL[3].push("heatdeliv.htm")

linkTitle[3].push("Efficiency");
linkURL[3].push("heateffic.htm")

linkTitle[3].push("Environment");
linkURL[3].push("heatenviron.htm")

linkTitle[3].push("Cost");
linkURL[3].push("heatcost.htm")

//###  section four

sectionSaying[4] = "Cool & Hot Links"

//###  section five 

sectionSaying[5] = "Gloss"

linkTitle[5].push("THIS IS THE TOP LINK");
linkURL[5].push("top.htm")

linkTitle[5].push("THIS IS THE SECOND LINK");
linkURL[5].push("top.htm")

linkTitle[5].push("THIS IS THE THIRD LINK");
linkURL[5].push("top.htm")

linkTitle[5].push("THIS IS THE FOURTH LINK");
linkURL[5].push("top.htm")


//#################### footers links!


var footerLink = new Array( 1 )
var footerURL = new Array ( 1 )
var footerStatBar = new Array ( 1 )

footerLink.push("Contact us");
footerURL.push("../contact.htm")
footerStatBar.push("Email me")

footerLink.push("Author");
footerURL.push("../contact.htm#author")
footerStatBar.push("Email me")

footerLink.push("Security");
footerURL.push("../contact.htm#security")
footerStatBar.push("Email me")



	
	
