/**
 * jquery-extensions.js
 * 
 * @author R. Coupland <richard.coupland@strategyeye.com>
 */

jQuery.fn.extend({
	// jQuery helper to evaluate $() return is not empty 
	exists: function() {
	    return $(this).length !== 0;
	}
});

