function scorri(){
	i = i +3;
	var url = "holding.php?start=" + i;
	new Ajax(url, {
		method: 'get',
		update: $('holdScroll')
	}).request();
	return false;
}
var i = -3;
window.addEvent('domready', function() {
	$('holdingVediAltre').addEvent('click', function(e){ 
		new Event(e).stop(); 
		scorri();
	});
});



