/*
window.addEvent('domready', function(){
	  var totIncrement		= 0;
	  var increment			= 1010;
	  // maxRightIncremement = increment*(- [Anzahl der Anzeigen minus 1]);
	  var maxRightIncrement	= increment*(-(anzahl_horadd-1));
	  var fx = new Fx.Style('horadd_list', 'margin-left', {
				duration: 1000,
				transition: Fx.Transitions.Back.easeInOut,
				wait: true
				
				
	   });
	   
	   //-------------------------------------
	  // EVENTS for the button "previous"
	  $('previous').addEvents({ 
	  
          'click' : function(event){ 

		  if(totIncrement<0){
					totIncrement = totIncrement+increment;
					fx.stop()
					fx.start(totIncrement);
				}
			}			  	  
      }); 
	 
       //-------------------------------------
	  // EVENTS for the button "next"
  	  $('next').addEvents({ 
          'click' : function(event){ 
			 if(totIncrement>maxRightIncrement){
				 totIncrement = totIncrement-increment;
		    	fx.stop()
				fx.start(totIncrement);
			}
          }		  		  
      })

	 
});
*/


/*
window.addEvent('domready', function(){
	  var totIncrement		= 0;
	  var increment			= 160;
	  // maxRightIncremement = increment*(- [Anzahl der Anzeigen minus 1]);
	  var maxRightIncrement	= increment*(-(anzahl_veradd-1));
	  var fx = new Fx.Style('veradd_list', 'margin-left', {
				duration: 1000,
				transition: Fx.Transitions.Back.easeInOut,
				wait: true
				
				
	   });
	   
	   //-------------------------------------
	  // EVENTS for the button "previous"
	  $('previous').addEvents({ 
	  
          'click' : function(event){ 

		  if(totIncrement<0){
					totIncrement = totIncrement+increment;
					fx.stop()
					fx.start(totIncrement);
				}
			}			  	  
      }); 
	 
	 
       //-------------------------------------
	  // EVENTS for the button "next"
  	  $('next').addEvents({ 
          'click' : function(event){
			 if(totIncrement>maxRightIncrement){
				totIncrement = totIncrement-increment;
		    	fx.stop()
				fx.start(totIncrement);
			}
          }		  		  
      })
});
*/
