
	// allows you to select php identifiers such as
	// <input id="contact[options]" type="text" value="" />
	
		function $$(selector, context){
			return jQuery(selector.replace(/(\[|\])/g, '\\$1'), context)
			}


