if (document.location.href.match(/search\.asp$/i)) {
	var searchRules = {
		'#search_form input#search' : function(el) {
			el.onclick = function() {
				set_search_target(el.form, "http://www.vebra.com/home/solex/refine.asp");
			}
		}
	}
	Behaviour.register(searchRules);
}
// Sets the page to submit to on for a form.
function set_search_target(form, target) {
	form.action = target;
}