/**
 * Plum: A library of tools for jQuery
 *
 * @package      Plum
 * @version      1.2
 * @author       RoboCréatif, LLC
 * @copyright    2011
 * @date         July 2, 2011
 */

var plum = plum || {};

String.prototype.plum = Number.prototype.plum = jQuery.fn.plum = function(callback, options)
{
	var action = callback.split('.'), secondary;
	callback = action[0];
	if (action.length > 1) {
		secondary = options;
		options = action[1];
	}
	return typeof plum[callback] === 'function' ? plum[callback].call(this, options, secondary) : this;
};

