$(function() {
	 
	 // Alert Box Content 

		var	show = true; //show hide alert box values true | false
		var alertTitle = "Having trouble logging into Home Banking?";
		var alertText = "Enter your member number and password. After logging in, click Having Trouble? to answer your questions and continue to SafeLog Security Setup";
		var alertLink = "https://www.towerfcu.org/site/demo_newsafelog0.html"
		if(show){
			$(".alertBox h5").html(alertTitle);
			$(".alertBox span").html(alertText);
			$(".alertBox a").attr('href',alertLink);
		}
		else
		{
			$(".alertBox").hide();
		}
	
});
