$(function() {

    $('#featured-house-slideshow').cycle({ 
	    pager: '#pager-body',
		timeout: 3000,
		next: '#next', 
        prev: '#prev',
        before: function(a,b,c,d) {
        	if ( c.currSlide < c.slideCount-3 || c.nextSlide == 0 ){
	        	var p = ( c.nextSlide - 2 < 0 ) ? 0 : -(45*(c.nextSlide-2));
	        	$("#pager-body").animate({"top":p+"px"},1000);
        	}
        }
	});


}); 