document.observe('dom:loaded', function() {

		if ($$('.viewAll').length){
			$$('.reveal').each(function(el){
				new SimpleReveal(el, {tLinkSel:'.viewAll', contentSel:'p', cb : function(){
					var open = this.toggles.first().innerHTML.indexOf('More') != -1;
					if(open) this.toggles.invoke('update', open ? 'Less Info' : 'More Info');
				}});
			});
		}

});