createBoxes=function(){
			//Box One
            showBox=function(){
            var box=document.getElementById('welcome-overlay');
			var background=document.getElementById('page-overlay');
            box.style.visibility='visible';
			background.style.visibility='visible';
            }

            hideBox=function(){
            var box=document.getElementById('welcome-overlay');
			var background=document.getElementById('page-overlay');
            box.style.visibility='hidden';
			background.style.visibility='hidden';
            }
			
            var a1=document.getElementById('a1');
            a1.onmousedown=showBox;
			
			var a1b=document.getElementById('a1b');
            a1b.onmousedown=hideBox;
			
}
// execute code once page is loaded
window.onload=createBoxes;

var welcome = '<a href="#" id="a1b">Close (x)</a><h2>New to McLean Baptist Church?</h2><p>Just as no two people are the same, no two churches are the same. Each has its own personality, its own fellowship, its own style of worship. As you search for a Church home, we<br>hope you will find one that is a good fit for you.</br><br>With that thought in mind, may we invite you to<br />enter our doors and see what we have to offer. </br><p>Sunday Mornings at MBC for all ages begin<br />at 9:45 a.m., and worship is at 8:45 and 11:00 a.m. <br /></p><strong>Address:</strong> 1367 Chain Bridge Road in McLean<br /><strong>Phone:</strong> 703.356.8080<br /><strong>Email:</strong> <a href="mailto:staff@mcleanbaptist.org">staff@mcleanbaptist.org</a></p>';

