(function($) {
$.effects.bounce = function(o) {
	return this.queue(function() {
		var el = $(this), props = ['position','top','left'];
		var mode = $.effects.setMode(el, o.options.mode || 'effect');
		var direction = o.options.direction || 'up';
		var distance = o.options.distance || 20;
		var times = o.options.times || 5;
		var speed = o.duration || 250;
		if (/show|hide/.test(mode)) props.push('opacity');

		$.effects.save(el, props); el.show();
		$.effects.createWrapper(el);
		var ref = (direction == 'up' || direction == 'down') ? 'top' : 'left';
		var motion = (direction == 'up' || direction == 'left') ? 'pos' : 'neg';
		var distance = o.options.distance || (ref == 'top' ? el.outerHeight({margin:true}) / 3 : el.outerWidth({margin:true}) / 3);
		if (mode == 'show') el.css('opacity', 0).css(ref, motion == 'pos' ? -distance : distance);
		if (mode == 'hide') distance = distance / (times * 2);
		if (mode != 'hide') times--;

		if (mode == 'show') {
			var animation = {opacity: 1};
			animation[ref] = (motion == 'pos' ? '+=' : '-=') + distance;
			el.animate(animation, speed / 2, o.options.easing);
			distance = distance / 2;
			times--;
		};
		for (var i = 0; i < times; i++) {
			var animation1 = {}, animation2 = {};
			animation1[ref] = (motion == 'pos' ? '-=' : '+=') + distance;
			animation2[ref] = (motion == 'pos' ? '+=' : '-=') + distance;
			el.animate(animation1, speed / 2, o.options.easing).animate(animation2, speed / 2, o.options.easing);
			distance = (mode == 'hide') ? distance * 2 : distance / 2;
		};
		if (mode == 'hide') {
			var animation = {opacity: 0};
			animation[ref] = (motion == 'pos' ? '-=' : '+=')  + distance;
			el.animate(animation, speed / 2, o.options.easing, function(){
				el.hide();
				$.effects.restore(el, props); $.effects.removeWrapper(el);
				if(o.callback) o.callback.apply(this, arguments);
			});
		} else {
			var animation1 = {}, animation2 = {};
			animation1[ref] = (motion == 'pos' ? '-=' : '+=') + distance;
			animation2[ref] = (motion == 'pos' ? '+=' : '-=') + distance;
			el.animate(animation1, speed / 2, o.options.easing).animate(animation2, speed / 2, o.options.easing, function(){
				$.effects.restore(el, props); $.effects.removeWrapper(el);
				if(o.callback) o.callback.apply(this, arguments);
			});
		};
		el.queue('fx', function() { el.dequeue(); });
		el.dequeue();
	});

};
})(jQuery);
