Event.observe(window, 'load', function() {
	$$('div.help a').each(function(el) {
		test = new RegExp("/"+window.location.host+"\/grants\/application/");
		if (el.href.search(test) == -1)
		{
			Event.observe(el, 'click', function(event) {
				window.open(el.href);
				Event.stop(event);
			});
		}
	});
});


