(function($){
	
	/* The plugin extends the jQuery Core with four methods */
	
	/* Converting #actividades into a bounce box: */
	$.fn.bounceBoxActividades = function() {};
	
	/* The boxShow method */
	$.fn.bounceBoxActividadesShow = function(){
		
		/* Starting a rightward animation */				
		this.stop().animate({left: 867},{duration: 'slow',easing:'easeOutBounce'});
		this.data('bounceShown',true);
		return this;
	}
	
	/* Converting #reserve into a bounce box: */
	$.fn.bounceBoxReserve = function(){
				
		this.css({								
			position	: 'absolute',
			top			: '20',
			left		: '0'			
		});
		
		return this;
	}
	
	$.fn.bounceBoxReserveShow = function(){
		
		/* Starting a rightward animation */		
		this.stop().animate({left: 430},{easing:'easeOutBounce'});
		this.data('bounceShown',true);
		return this;
	}	
})(jQuery);
