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


	var alertLinks 		= $$( ".warn" );
	var confirmLinks 	= $$( ".confirm" );

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

			return(alert("Please be advised that you are leaving First State Bank's website. This link is provided as a courtesy.  First State Bank does not endorse or control the content of third party websites."));

		});
	});

	confirmLinks.each(function(element, i) {
		element.addEvent('click', function( event ){
    	event = new Event(event);
			if( confirm("Please be advised that you are leaving First State Bank's website. This link is provided as a courtesy.  First State Bank does not endorse or control the content of third party websites.") ) {
				return true;
			} else {
				event.stop();
				return false;
			}

		});
	});
 	
 
});
