Event.observe(window,'load',function(){
	// document contains <body class="documents"> and <select id="province"> and <div id="documents"> ( ie: http://hometrust2.dev.cundari.com/legaldocuments.aspx )
	//		- whichever province is selected, the #documents childnode with h3 = ProvinceName Documents: is displayed
	if($$('body').shift().hasClassName('documents') && $('documents') && $('province')){
		$('documents').immediateDescendants().invoke('hide');
		Event.observe('province','change',function(ev){
			$('documents').immediateDescendants().each(function(div){
				div.setStyle({display:div.down().innerHTML == Event.element(ev).getValue() + " Documents:" ? 'block' : 'none'});
			});
		});
	}
});
