// Include custom javascript alert for all checking accounts.


window.addEvent('domready', function() {

var checkingAlert = $$("a[href*='https://umnas5.umonitor.com/bank2/welcome.do']");

var message = 'The Bank2 Great Rate account is limited to 2 accounts per customer and/or household. Additionally, the account is limited to Oklahoma residents only. The account may be offered to Bank2 loan customers.';

checkingAlert.each(function(element, i) {
		element.addEvent('click', function(){

			return(alert(message));
		});
	});
});