/* EcoLearning
	Random Case Study
	for side bar */
	
var caseStudy;

caseStudy = new Array(
					new Array(
						"Colchester High School has paper recycling boxes in every class room and appoints student monitors to empty them every day.",
						"../resources-transcripts-chsb/index.html"
					),
					new Array(
						"St. Mary's School had an environmental week, learn more about what they do to be green...",
						"../resources-transcripts-st_marys/index.html"
					),
					new Array(
						"At CRGS there are motion sensor lights and turn off light stickers in a bid to stop lights being left on unnecessarily. Find out more of what CRGS does...",
						"../resources-transcripts-crgs/index.html"
					),
					new Array(
						"Phillip Morant School uses locally produced food in its kitchens, why not try that in yours?",
						"../resources-transcripts-phillip_morant/index.html"
					),
					new Array(
						"Heathlands Primary School have an allottment to teach the children about growing their own food.",
						"../resources-transcripts-heathlands/index.html"
					),
					new Array(
						"Emailing letters and notices home to parents is a way CRGS saves paper. See what else CRGS does...",
						"../us-what_we_did-communication/index.html"
					),
					new Array(
						"At our school, we put up posters to remind people to turn off computers and printers.",
						"../us-what_we_did-notices/index.html"
					),
					new Array(
						"An energy consultant helped us to make a temperature map of our school. Check it out!",
						"../us-what_we_did-survey/index.html"
					),
					new Array(
						"Prettygate Junior School have a garden area where they compost fruit remains.  See what else they do.",
						"../resources-transcripts-prettygate/index.html"
					),
					new Array(
						"Prettygate Junior School have planted lots of trees to help reduce their carbon footprint, learn more...",
						"../resources-transcripts-prettygate/index.html"
					),
					new Array(
						"Littlegarth Primary School are hoping to build a nature trail for their students. Find out what else they do",
						"../resources-transcripts-littlegarth/index.html"
					),
					new Array(
						"Colchester County High School Students helped to audit their school",
						"../resources-transcripts-cchs/index.html"
					),
					new Array(
						"Building a pond area is something Heathlands Primary School is doing. See what else they do",
						"../resources-transcripts-heathlands/index.html"
					)
				);
				
				
function newCaseStudy(){
	var randomNo = Math.round(Math.random()*(caseStudy.length - 1));
	
	document.getElementById("caseStudy").innerHTML = "<p>" + caseStudy[randomNo][0] + "<br /><br /><a href=\"" + caseStudy[randomNo][1] + "\">Read More</a> | <a href=\"javascript:newCaseStudy()\">Next &raquo;</a></p>";
	changeFontSize();
}

newCaseStudy();
