jQuery.noConflict();
jQuery.fn.extend({
	fade : function () {
		return this.each(function () { 
			jQuery(this).hide().delay(100).fadeIn(400);
		});
	}	
});
jQuery(document).ready(function() {
//qui inizia tutto
//scroll
	jQuery('#avanti').click(function(){
//	    if (cur+1 > max) return;
//	    cur++;
		jQuery(document).scrollTo('+=410px', 1000,{axis:'x',easing:'swing'});

	});

	jQuery('#indietro').click(function(){
//	    if (cur-1 < 1) return;
//	    cur--;
		jQuery(document).scrollTo('-=410px',1000,{axis:'x',easing:'swing'});
	});



jQuery('#custom1').load('ospiti.html #guestbook p:lt(3)');
//qui finisce tutto
});

