$(document).ready(function() {
	
	if($('#try-card-match').height() > $('#email-alerts').height()) {
		$('#email-alerts').height($('#try-card-match').height());
	} else {
		$('#try-card-match').height($('#email-alerts').height());
	}
	
	//don't show the exit console if we're staying on the site
	$('a').each(function() {
		if(this.href.match(/(https?:\/\/(www\.|dev\.)?creditvalet\.)|(mailto)/) || $(this).hasClass('ignore')) {
			$(this).click(function() {
				console = false;
			});
		} else {
			return true;
		}
	});
	
});
