/*
 * dollar - use jQuery.$("foo") instead of jQuery("#foo").get(0)
 *
 * Copyright (c) 2008 Handlino (http://handlino.com/)
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * v0.1
 */
(function($) {
	$.fn.$ = function(i) {
		return $('#'+i).get(0);
	};
	$.$ = $.fn.$;
})(jQuery);
