$(document).ready(function(){
	var regExp = /https:\/\/www\.selfmgmt\.com\/cgi-bin\/assessment\.exe/;
	$("a").each(function(intIndex){
					if(regExp.test(this)){
							$(this).click(function(){
									WebMetrics.Capture('click', 'Apply Online');
							});
					}
	});
});
