// link-001
window.addEvent('domready', function(){ 
var totIncrement1=0;
var increment1=1090;
var maxRightIncrement1=increment1*(-1);
var fx1 = new Fx.Style('link-mylist-001', 'margin-left', {
duration:1000,
transition:Fx.Transitions.Back.easeInOut,
wait:true
});
// EVENTS for the button "previous"
$('link-prev-001').addEvents({ 
'click':function(event){ 
if(totIncrement1<0){
totIncrement1=totIncrement1+increment1;
fx1.stop()
fx1.start(totIncrement1);
}
}			  	  
}); 
// EVENTS for the button "next"
$('link-next-001').addEvents({ 
'click':function(event){ 
if(totIncrement1>maxRightIncrement1){
totIncrement1 = totIncrement1-increment1;
fx1.stop()
fx1.start(totIncrement1);
}
}		  		  
})
});