window.addEvent('domready', function(){

		
		var triggers = $$('a').filterByClass('trigger');
		var contents = $$('div').filterByClass('more');

		triggers.each(function(item,index){

			var sl = new Fx.Slide(contents[index], {duration:300 } );	/* Instantiate a new slider effect on the matching .content element */
	 
			$(triggers[index]).addEvent('click',function(e){  /* Add a click event to the [x]th trigger */

				e = new Event(e);			  /* the event */
				sl.toggle();				  /* Toggle the slider condition */


				if (prop = $(triggers[index]).getText('a') == 'See More Info') $(triggers[index]).innerHTML = 'See Less Info';

				else(
				
				$(triggers[index]).innerHTML = 'See More Info'
				
				);
				
				
				e.stop(); 				  /* Stop the event from bubbling */

			});	
			
			sl.hide(); 				  /* Hide the slider */

		});

	});

