// ==UserScript==
// @name          Google Button Search Now
// @namespace     http://ss-o.net/
// @include       http://*google*
// ==/UserScript==

if (location.host.indexOf('google') > 0) {
	['il','all'].forEach(function(id) {
		var input = document.getElementById(id);
		input && (input.addEventListener('click',function(){
			input.form.submit();
		},false));
	});
}
