/*
sfHover = function() {
	var sfEls = document.getElementById("top-nav").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
*/
$(document).ready(function(){
    $("#top-nav li").hover(
        function(){ $("ul", this).show(); }, 
        function() { $("ul", this).hide(); } 
    );
    if (document.all) {
        $("#top-nav li").hoverClass ("sfhover");
    }
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};   

function disclaimer() {
	alert("The First State Bank website provides links to other websites for convenience and informational purposes only. Users should be aware that when they select a link on the First State Bank’s website to an external website, they are leaving the First State Bank's site. Linked sites are not under the control of First State Bank, and First State Bank is not responsible for the contents of any linked site or any link contained in a linked site, or any changes or updates to such sites. First State Bank is not responsible for any transmission received from a linked site. The inclusion of a link does not imply endorsement by First State Bank of the site, its content, advertisers or sponsors. External sites may contain information that is copyrighted with restrictions on reuse. Permission to use copyrighted materials must be obtained from the original source and cannot be obtained from the First State Bank.")
}

$(document).ready(function() {
	$("a").each(
		function() {
			if( this.href.indexOf(location.hostname) == -1 && this.href.indexOf('javascript') < 0 && this.href.indexOf('mailto') < 0) {
				if (this.href != 'https://www.fiservdmecom1.net/PBI_PBI1961/pbi1961.asp?Rt=073921718&LogonBy=connect3&PRMAccess=Account') {
					$(this).attr('target', '_blank');
					$(this).click(function() {
										   disclaimer();
					});
				}
			}
		}
	);
	$(".disclaimer").click( function() {
										   disclaimer();
					
	});
	
});

//alert('testing...');