var question = new Array()
    question[0]="";
    question[1]="<h3><strong>Q.</strong> What is the advantage of planting a tree through the Tree Stewardship Program as compared to planting one myself?</h3>";
    question[2]="<h3><strong>Q.</strong> Is there a guarantee that comes with my tree?</h3>";
    question[3]="<h3><strong>Q.</strong> Will I need to provide my new tree with any special care?</h3>";
    question[4]="<h3><strong>Q.</strong> Can I get a tree in my backyard?</h3>";
	question[5]="<h3><strong>Q.</strong> Do I need to have a utility check completed before my tree is planted?</h3>";
	question[6]="<h3><strong>Q.</strong> How large will my tree be when it is planted?</h3>";
	
var questiontotal = question.length - 1;

var answer = new Array()
    answer[0]="";
    answer[1]="<p><strong>A.</strong> Through the TSP program, the homeowner is getting professional advice and service including a full tree planting package (valued at about $450). TSP staff will determine the best planting location and tree species for your site. We consider factors such as:</p><ul class=\"arrow_bullet\"><li>light</li><li>resistance to prominent disease and pests</li><li>growing requirements</li><li>provide tree care resources to ensure maximum health and vigour of your tree</li></ul><p>Also, the city of Thunder Bay has tree planting standards for boulevard tree planting that don't allow small trees to be planted. </p><p>The TSP plants young but large trees that weigh up to 180kg (400lb) each. For homeowners to plant such a tree would require much labour and result in much expense and grief.</p>";
    answer[2]="<p><strong>A.</strong> The TSP guarantees bud burst for its first growing season. If the leaves do not come out in its first growing season the TSP will replace the tree free of charge.</p>";
    answer[3]="<p><strong>A.</strong> Yes. As a steward of your new tree, you will be required to help it get established. Regular watering is essential! When rain is scarce, watering twice per week, with a hose trickling for about 2 hours at the base of the tree is best. This should be done from early spring to late fall.</p><p>TSP will also provide you with a <a href=\"files/tree_care_guide.pdf\" target=\"_blank\">tree care guide</a> and will also be available to answer any tree care questions you may have. </p>";
    answer[4]="<p><strong>A.</strong> No. The TSP only plants trees on public boulevards.</p>";
	answer[5]="<p><strong>A.</strong> Yes. The TSP will arrange to have local utilities (gas, hydro, communications, water) perform a utility locate on your property. This service is of no charge to you.</p>";
	answer[6]="<p><strong>A.</strong> Trees offered are generally 8-12 feet in height. They are young trees with a trunk diameter of anywhere between 50-60mm (2-2.5\") and weigh close to 180kg (400 lbs) each with its root ball and wire basket.</p>";
	
var answertotal = answer.length - 1;

function show_questions(){
for (var i = 1; i <= questiontotal; i++) {
document.write('<a href="javascript:show_answer('+ i +')">');
document.write(question[i]);
document.write('</a>');
document.write('<div id="question_'+ i +'"></div>');
}
}

function show_answer(i){
for (var j = 1; j <= questiontotal; j++) {
if (j == i){
document.getElementById('question_'+ i).innerHTML = answer[i];
} else {
document.getElementById('question_'+ j).innerHTML = "";
}
}
}
