/* ______________________________________________________________________________
 *
 * jQuery Utils
 * 
 * 	@version		- 0.1 - 27.03.2010
 * 	@author 		- VOID (www.void.pt)
 *	@dependencies 	- jQuery
 *
 * ------------------------------------------------------------------------------
 *	METHODS
 * ------------------------------------------------------------------------------
 *		1. EQUALS - equals(compareTo)
 *		
 * ___________________________________________________________________________ */


/* [1. EQUALS] --------------------------------------------------------------- */

$.fn.equals = function (compareTo) {
	if (!compareTo || !compareTo.length || this.length != compareTo.length) {
		return false;
	}
	for (var i = 0; i < this.length; i++) {
		if (this[i] !== compareTo[i]) {
			return false;
		}
	}
	return true;
} 
