// Easing equation, borrowed from jQuery easing plugin
// http://gsgd.co.uk/sandbox/jquery/easing/
jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};
jQuery(function( $ ){
	$('#bnda_body_right').serialScroll({
		target:'#sections',
		items:'div', 
		prev:'a.img_sale',
		next:'a.img_rent',
		duration:500,
		force:true,
		axis:'y',
		cycle:true,
		easing:'linear',
		lazy:true,// NOTE: it's set to true, meaning you can add/remove/reorder items and the changes are taken into account.
		interval:10000, // yeah! I now added auto-scrolling
		step:100

	});
});

function save(id){
	
}