// Expandable/Collapsible Sections

function dsp(loc){
	if(document.getElementById){
		var foc=loc.firstChild;
		foc=loc.firstChild.innerHTML?
			loc.firstChild:
			loc.firstChild.nextSibling;
		foc.innerHTML=foc.innerHTML=='+'?'-':'+';
		foc=loc.parentNode.nextSibling.style?
			loc.parentNode.nextSibling:
			loc.parentNode.nextSibling.nextSibling;
		foc.style.display=foc.style.display=='block'?'none':'block';}}  

if(!document.getElementById)
	document.write('<style type="text/css"><!--\n'+
		'.dspcont{display:block;}\n'+
		'//--></style>');


// Photo Rollover

if (document.images){
	photoHome=new Image;
	photoHome.src="http://www.norglen.ca/images/photoHome.jpg";
	photoAboutUs=new Image;
	photoAboutUs.src="http://www.norglen.ca/images/photoAboutUs.jpg";
	photoAboutRG=new Image;
	photoAboutRG.src="http://www.norglen.ca/images/photoAboutRG.jpg";
	photoClasses=new Image;
	photoClasses.src="http://www.norglen.ca/images/photoClasses.jpg";
	photoCoaches=new Image;
	photoCoaches.src="http://www.norglen.ca/images/photoCoaches.jpg";
	photoEvents=new Image;
	photoEvents.src="http://www.norglen.ca/images/photoEvents.jpg";
	photoPhotos=new Image;
	photoPhotos.src="http://www.norglen.ca/images/photoPhotos.jpg";	}

function swapImage(imgName) {
	if (document.images){
		eval ('document.changingImage.src=' + imgName + '.src');}}