	window.addEvent('domready', function() {		
		var status = {
			'true': 'Less',
			'false': 'More'
		};		  
	  
		// Toggle Company Info
	  var information1 = new Fx.Slide('information1'); //creates new Fx.Slide object from info1 div	  		
	  $('toggle-information1').addEvent('click', function(e) { //Adds an onClick event to toggle-info1 div
		e = new Event(e);
		information1.toggle().chain(function(){
    		//alert(status[information1.open]); //Alerts true.
			$('span-1').set('html',status[information1.open]);
		}); //toggles the div
		
		if ($('toggle-information1').hasClass('hidden')){
		  $('toggle-information1').removeClass('hidden').addClass('visible');
		}
		else {
		  $('toggle-information1').removeClass('visible').addClass('hidden');
		}
		e.stop(); //this makes sure that the user wont be sent to given url (or that the page refreshes when using dummy url like "#") if the clicked element was a link 
		
	  });
	  
	  // Toggle Company Info2
	  var information2 = new Fx.Slide('information2'); //creates new Fx.Slide object from info2 div
	  $('toggle-information2').addEvent('click', function(e) { //Adds an onClick event to toggle-info2 div
		e = new Event(e);
		information2.toggle().chain(function(){
    		//alert(status[information2.open]); //Alerts true.
			$('span-2').set('html',status[information2.open]);
		}); //toggles the div
		
		if ($('toggle-information2').hasClass('hidden')){
		  $('toggle-information2').removeClass('hidden').addClass('visible');
		}
		else {
		  $('toggle-information2').removeClass('visible').addClass('hidden');
		}
		e.stop(); //this makes sure that the user wont be sent to given url (or that the page refreshes when using dummy url like "#") if the clicked element was a link 
	  }); 
	  
	  // Toggle Company Info3
	  var information3 = new Fx.Slide('information3'); //creates new Fx.Slide object from info3 div
	  $('toggle-information3').addEvent('click', function(e) { //Adds an onClick event to toggle-info3 div
		e = new Event(e);
		information3.toggle().chain(function(){
    		//alert(status[information1.open]); //Alerts true.
			$('span-3').set('html',status[information3.open]);
		}); //toggles the div
		
		if ($('toggle-information3').hasClass('hidden')){
		  $('toggle-information3').removeClass('hidden').addClass('visible');
		}
		else {
		  $('toggle-information3').removeClass('visible').addClass('hidden');
		}
		e.stop(); //this makes sure that the user wont be sent to given url (or that the page refreshes when using dummy url like "#") if the clicked element was a link 
	  });  
	  
	  // Toggle Company Info4
	  var information4 = new Fx.Slide('information4'); //creates new Fx.Slide object from info4 div
	  $('toggle-information4').addEvent('click', function(e) { //Adds an onClick event to toggle-info4 div
		e = new Event(e);
		information4.toggle().chain(function(){
    		//alert(status[information4.open]); //Alerts true.
			$('span-4').set('html',status[information4.open]);
		}); //toggles the div
		
		if ($('toggle-information4').hasClass('hidden')){
		  $('toggle-information4').removeClass('hidden').addClass('visible');
		}
		else {
		  $('toggle-information4').removeClass('visible').addClass('hidden');
		}
		e.stop(); //this makes sure that the user wont be sent to given url (or that the page refreshes when using dummy url like "#") if the clicked element was a link 
	  }); 
	  
	  // Toggle Company Info5
	  var information5 = new Fx.Slide('information5'); //creates new Fx.Slide object from info5 div
	  $('toggle-information5').addEvent('click', function(e) { //Adds an onClick event to toggle-info5 div
		e = new Event(e);
		information5.toggle().chain(function(){
    		//alert(status[information5.open]); //Alerts true.
			$('span-5').set('html',status[information5.open]);
		}); //toggles the div
		
		if ($('toggle-information5').hasClass('hidden')){
		  $('toggle-information5').removeClass('hidden').addClass('visible');
		}
		else {
		  $('toggle-information5').removeClass('visible').addClass('hidden');
		}
		e.stop(); //this makes sure that the user wont be sent to given url (or that the page refreshes when using dummy url like "#") if the clicked element was a link 
	  }); 
	  
	  // Toggle Company Info6
	  var information6 = new Fx.Slide('information6'); //creates new Fx.Slide object from info6 div
	  $('toggle-information6').addEvent('click', function(e) { //Adds an onClick event to toggle-info6 div
		e = new Event(e);
		information6.toggle().chain(function(){
    		//alert(status[information6.open]); //Alerts true.
			$('span-6').set('html',status[information6.open]);
		}); //toggles the div
		
		if ($('toggle-information6').hasClass('hidden')){
		  $('toggle-information6').removeClass('hidden').addClass('visible');
		}
		else {
		  $('toggle-information6').removeClass('visible').addClass('hidden');
		}
		e.stop(); //this makes sure that the user wont be sent to given url (or that the page refreshes when using dummy url like "#") if the clicked element was a link 
	  }); 
	  
	  // Toggle Company Info7
	  var information7 = new Fx.Slide('information7'); //creates new Fx.Slide object from info7 div
	  $('toggle-information7').addEvent('click', function(e) { //Adds an onClick event to toggle-info7 div
		e = new Event(e);
		information7.toggle().chain(function(){
    		//alert(status[information7.open]); //Alerts true.
			$('span-7').set('html',status[information7.open]);
		}); //toggles the div		
		
		if ($('toggle-information7').hasClass('hidden')){
		  $('toggle-information7').removeClass('hidden').addClass('visible');
		}
		else {
		  $('toggle-information7').removeClass('visible').addClass('hidden');
		}
		e.stop(); //this makes sure that the user wont be sent to given url (or that the page refreshes when using dummy url like "#") if the clicked element was a link 
	  }); 
	  
	  // Toggle Company Info8
	  var information8 = new Fx.Slide('information8'); //creates new Fx.Slide object from info8 div
	  $('toggle-information8').addEvent('click', function(e) { //Adds an onClick event to toggle-info8 div
		e = new Event(e);
		information8.toggle().chain(function(){
    		//alert(status[information8.open]); //Alerts true.
			$('span-8').set('html',status[information8.open]);
		}); //toggles the div
		
		if ($('toggle-information8').hasClass('hidden')){
		  $('toggle-information8').removeClass('hidden').addClass('visible');
		}
		else {
		  $('toggle-information8').removeClass('visible').addClass('hidden');
		}
		e.stop(); //this makes sure that the user wont be sent to given url (or that the page refreshes when using dummy url like "#") if the clicked element was a link 
	  });
	  
	  // Toggle Company Info9
	  var information9 = new Fx.Slide('information9'); //creates new Fx.Slide object from info9 div
	  $('toggle-information9').addEvent('click', function(e) { //Adds an onClick event to toggle-info9 div
		e = new Event(e);
		information9.toggle().chain(function(){
    		//alert(status[information9.open]); //Alerts true.
			$('span-9').set('html',status[information9.open]);
		}); //toggles the div
		
		if ($('toggle-information9').hasClass('hidden')){
		  $('toggle-information9').removeClass('hidden').addClass('visible');
		}
		else {
		  $('toggle-information9').removeClass('visible').addClass('hidden');
		}
		e.stop(); //this makes sure that the user wont be sent to given url (or that the page refreshes when using dummy url like "#") if the clicked element was a link 
	  });
	  
	  // Toggle Company Info9
	  var information10 = new Fx.Slide('information10'); //creates new Fx.Slide object from info10 div
	  $('toggle-information10').addEvent('click', function(e) { //Adds an onClick event to toggle-info10 div
		e = new Event(e);
		information10.toggle().chain(function(){
    		//alert(status[information10.open]); //Alerts true.
			$('span-10').set('html',status[information10.open]);
		}); //toggles the div
		
		if ($('toggle-information10').hasClass('hidden')){
		  $('toggle-information10').removeClass('hidden').addClass('visible');
		}
		else {
		  $('toggle-information10').removeClass('visible').addClass('hidden');
		}
		e.stop(); //this makes sure that the user wont be sent to given url (or that the page refreshes when using dummy url like "#") if the clicked element was a link 
	  });
	
		
	
	});
