jQuery(document).ready(function($) {

var reverse_slides = false;
function animate_slides() {
	$('#home-banner .slides .slide').each(function(){
		var index = $('#home-banner .slides .slide').index($(this)) + 1;
		var top_new = (index%2 == 0) ? ((reverse_slides) ? '-375px' : '0px') : ((reverse_slides) ? '0px' : '-375px');
		var top_old = (index%2 != 0) ? ((reverse_slides) ? '-375px' : '0px') : ((reverse_slides) ? '0px' : '-375px');
		$(this).animate({top: top_old}, {duration: 5000 + (375 * (index - 1))} ).animate({top: top_new}, {duration: 1500, complete: (index == $('#home-banner .slides .slide').size()) ? animate_slides : null});
	});

reverse_slides = !reverse_slides;

}
if ($('#home-banner .slides .slide').size() > 0) {
animate_slides();
}
}); 
