jQuery.prototype.clickFunction = function(f){ this.removeAttr("href").css("cursor", "pointer").click(f); return this; }
jQuery.prototype.clickable = function(f){ this.css("cursor", "pointer").click(f); return this; }
