/*	This script and many more are available free online at
	The JavaScript Source :: http://javascript.internet.com
	Created by: SCL Software :: http://www.sclsoftware.com/en
	Licensed under: U.S. Copyright */
/*======================================================================
	Javascript Menu 1.0
	Copyright (c) 2008 SCL Software (http://www.sclsoftware.com)
	You can use it freely as long as all copyright messages are intact.
======================================================================*/
if(typeof Scl=="undefined"){
	var Scl={};
}

(function(){
	Scl.MenuItem=function(text,link,cssClass){
		this.text=text;
		this.link=link;
		this.cssClass=cssClass;
	};

	Scl.Menu=function(menuWidth){
		var instance=this;
		var menuDiv;
		var menuItems=new Array();
		var dockElement;
		var left=0;
		var top=0;
		var width=menuWidth ? menuWidth : 200;
		var height=0;
		var hideThread;
		var fullVisible=false;
		var animationThread;
		var animationStart=0;
		var animationEnd=0;
		var ANIMATION_NONE=0;
		var ANIMATION_VERTICAL=1;
		this.animationType=ANIMATION_VERTICAL;
		this.animationSpeed=10;
		this.animationStep=15;
		this.margin=10;
		this.menuCssClass='menu';
		this.menuItemCssClass='menuItem';
		this.rightToLeft=false;
		this.bottomToTop=false;
		this.hideTimeOut=120;

		this.addItem=function(text,link,cssClass){
			menuItems.push(new Scl.MenuItem(text,link,cssClass));
		};
		this.dockTo=function(element){
			addEvent(window,'load',function(){ dockToElement(element); },false);
		};
		this.showAt=function(element){
			initialize();
			var position=getPosition(element);
			position.y+=(instance.bottomToTop) ? (height+instance.margin) * -1 : instance.margin+element.offsetHeight;
			show(position.x,position.y);
		};
		this.showAtPosition=function(x,y){
			initialize();
			show(x,y);
		};
		this.hide=function(){
			hideThread=setTimeout(hideMenu,instance.hideTimeOut);
		};
		function dockToElement(element){
			if(typeof(element)=='string'){
				element=document.getElementById(element);
			}
			dockElement=element;
			addEvent(element,'mouseover',showAtDockElement,false);
			addEvent(element,'mouseout',instance.hide,false);
		};
		function showAtDockElement(){
			instance.showAt(dockElement);
		};
		function initialize(){
			if(menuDiv==null){
				createMenu();
			}
		};
		function show(x,y){
			cancelHide();
			menuDiv.style.left=x+'px';
			menuDiv.style.top=y+'px';
			// Asignar para la animacion
			left=x;
			top=y;
			switch(instance.animationType){
				case ANIMATION_NONE:
					menuDiv.style.display='block';
					break;
				default:
					startAnimation(0,height);
					break;
			}
		};
		function createMenu(){
			menuDiv=document.createElement('div');
			menuDiv.style.position='absolute';
			var innerDiv=document.createElement('div');
			menuDiv.appendChild(innerDiv);
			innerDiv.className=instance.menuCssClass;
			innerDiv.style.width=width+'px';
			addEvent(menuDiv,'mouseover',cancelHide,false);
			addEvent(menuDiv,'mouseout',instance.hide,false);
			// Add items
			for(var i=0; i<menuItems.length; i++){
				var menuItemDiv=createMenuItem(menuItems[i]);
				innerDiv.appendChild(menuItemDiv);
			}
			// Add to the document
			document.body.appendChild(menuDiv);
			height=menuDiv.offsetHeight;
		};
		function createMenuItem(menuItem){
			var menuItemDiv=document.createElement('div');
			menuItemDiv.className=menuItem.cssClass != null ? menuItem.cssClass : instance.menuItemCssClass;
			if(menuItem.link != null){
				menuItemDiv.link=menuItem.link; // Crear la propiedad con el link para cada elemento
				menuItemDiv.onclick=function(){ window.location=menuItem.link; };
				var link=document.createElement('a');
				link.setAttribute('href',menuItem.link);
				link.appendChild(document.createTextNode(menuItem.text));
				menuItemDiv.appendChild(link);
			}
			return menuItemDiv;
		};
		function cancelHide(){
			clearTimeout(hideThread);
			hideThread=null;
		};
		function hideMenu(){
			switch(instance.animationType){
				case ANIMATION_NONE:
					menuDiv.style.display='none';
					break;
				default:
					startAnimation(parseStyle(menuDiv.style.height),0);
					break;
			}
		};
		function parseStyle(value){
			return parseInt(value.substring(0,value.length-2));
		};
		function getPosition(element){
			var posx=0;
			var posy=0;
			if(element.offsetParent){
				do{
					posx+=element.offsetLeft;
					posy+=element.offsetTop;
					if(!element.offsetParent){
						break;
					}
				}
				while (element=element.offsetParent)
			}
			else if(element.x){
				posx+=element.x;
				posy+=element.y;
			}
			return{x:posx,y:posy};
		};
		function addEvent(element,evType,functionName,useCapture){
			if(element.addEventListener){
				element.addEventListener(evType,functionName,useCapture);
			}
			else if(element.attachEvent){
				element.attachEvent('on'+evType ,functionName);
			}
			else{
				element['on'+evType]=functionName;
			}
		};
		function startAnimation(start,end){
			var showing=end>start;
			if(showing&fullVisible){
				return;
			}
			menuDiv.style.zIndex=showing ? 20 : 1;
			animationStart=start;
			animationEnd=end;
			menuDiv.style.overflow='hidden';
			menuDiv.style.display='block';
			menuDiv.style.height=animationStart+'px';
			fullVisible=false;
			clearInterval(animationThread);
			switch(instance.animationType){
				case ANIMATION_VERTICAL:
					if(instance.bottomToTop){
						menuDiv.style.top=(top+height-menuDiv.offsetHeight)+'px';
					}
					animationThread=setInterval(animateVertical,instance.animationSpeed);
					break;
			}
		};
		function animateVertical(){
			var showing=animationEnd > animationStart;
			var strHeight=menuDiv.style.height;
			var animationHeight=parseInt(strHeight.substring(0,strHeight.length-2));
			if((showing & animationHeight >= animationEnd) || (!showing & animationHeight <= animationEnd)){
				clearInterval(animationThread);
				if(showing){ fullVisible=true; }
				else{ menuDiv.style.display='none'; }
			}
			else{
				animationHeight+=showing ? instance.animationStep : -instance.animationStep;
				if((showing & animationHeight > animationEnd) || (!showing & animationHeight < animationEnd)){
					animationHeight=animationEnd;
				}
				menuDiv.style.height=animationHeight+'px';
				if(instance.bottomToTop){
					menuDiv.style.top=(top+height-animationHeight)+'px';
				}
			}
		};
	};
})();
/*-------------------- End of SCL Software contribution ---------------------*/
/*---------------------------------------------------------------------------*/
var menu1=new Scl.Menu();
	menu1.addItem('Mission & Strategy','10_Mission.html');
	menu1.addItem('Values & Vision','11_Values.html');
	menu1.addItem('Challenges & Needs','12_Challenges.html');
	menu1.addItem('Authentic Leadership','13_Leadership.html');
	menu1.addItem('Genuine Expertise','14_Genuine.html');
	menu1.addItem('ATC President & CEO','15_President.html');
	menu1.addItem('Areas of Expertise','16_Expertise.html');
	menu1.addItem('The 5 Promises','17_Promises.html');
	menu1.addItem('Prospective Customers','18_Prospective.html');
	menu1.addItem('Customers','19_Customers.html');
	menu1.dockTo('about');
var menu2=new Scl.Menu();
	menu2.addItem('Management Couseling','20_Management.html');
	menu2.addItem('Spec Ops Management','21_Spec.html');
	menu2.addItem('Teaching & Training','22_Teaching.html');
	menu2.addItem('Inspirational Speaking','23_Inspirational.html');
	menu2.addItem('Group Forums','24_Forums.html');
	menu2.addItem('Advocay','25_Advocacy.html');
	menu2.addItem('For Your Organizaton','26_Organization.html');
	menu2.addItem('For Your Community','27_Community.html');
	menu2.addItem('Consulting Basics','28_Basics.html');
	menu2.addItem('Your Initial Consultation','29_Consultation.html');
	menu2.dockTo('services');
var menu3=new Scl.Menu();
	menu3.addItem('Existing Programs','30_Existing.html');
	menu3.addItem('Programs in Development','31_Developement.html');
	menu3.addItem('Be a LifeBuilder','32_LifeBuilder.html');
	menu3.dockTo('programs');
var menu4=new Scl.Menu();
	menu4.addItem('Inquire about ATC Services','40_Inquire.html');
	menu4.addItem('Cash Contribution','41_Contribution.html');
	menu4.addItem('NO COST Contribution','42_NoCost.html');
	menu4.addItem('In-Kind Contribution','43_InKind.html');
	menu4.addItem('Website Sponsorship','44_Sponsorship.html');
	menu4.addItem('Provide Feedback','45_Feedback.html');
	menu4.addItem('Register with ATC','46_Register.html');
	menu4.addItem('Tell Others about ATC','47_Tell.html');
	menu4.addItem('Volunteer','48_Volunteer.html');
	menu4.dockTo('action');
/*---------------------------------------------------------------------------*/
function opacity_ramp(id,starting_opacity,ending_opacity,millisec) {
	var timer,ms_at_opacity;	/* Milliseconds at each opacity level */
	change_opacity(starting_opacity,id);
	if(starting_opacity > ending_opacity) {	/* Decrease opacity each time... */
		timer = ms_at_opacity = Math.round(millisec / (starting_opacity-ending_opacity));
		for(i=starting_opacity-1; i >= ending_opacity; i--) {
			setTimeout('change_opacity('+i+',"'+id+'")',timer);
			timer += ms_at_opacity;
		}
	}
	else if(starting_opacity < ending_opacity) {	/* Increase opacity each time... */
		timer = ms_at_opacity = Math.round(millisec / (ending_opacity-starting_opacity));
		for(i=starting_opacity+1; i <= ending_opacity; i++) {
			setTimeout('change_opacity('+i+',"'+id+'")',timer);
			timer += ms_at_opacity;
		}
	}
}
function change_opacity(opacity,id) {	/* Change the opacity as required for several browsers */
	var object = document.getElementById(id).style; 
	object.opacity = (opacity / 100);
	object.MozOpacity = (opacity / 100);
	object.KhtmlOpacity = (opacity / 100);
	object.filter = 'alpha(opacity='+opacity+')';
}
/*---------------------------------------------------------------------------*/
var _Scrolling_Current_Index;
var _Scrolling_Current_Id;
function scroll_pictures() {
	_Scrolling_Current_Index = 1;
	_Scrolling_Current_Id = 'picture'+_Scrolling_Current_Index;
	if(document.getElementById(_Scrolling_Current_Id)) {
		opacity_ramp(_Scrolling_Current_Id,0,100,500);
		document.getElementById(_Scrolling_Current_Id).style.display = "block";
		window.setTimeout('scroll_fade_out()',6500);
	}
}
function scroll_fade_out(){
	opacity_ramp(_Scrolling_Current_Id,100,0,500);
	window.setTimeout('scroll_next()',500);
}
function scroll_next() {
	document.getElementById(_Scrolling_Current_Id).style.display = "none";
	_Scrolling_Current_Index++;
	_Scrolling_Current_Id = 'picture'+_Scrolling_Current_Index;
	if(document.getElementById(_Scrolling_Current_Id)) {
		opacity_ramp(_Scrolling_Current_Id,0,100,500);
		document.getElementById(_Scrolling_Current_Id).style.display = "block";
		window.setTimeout('scroll_fade_out()',6300);
	}
	else {
		scroll_pictures();
	}
}
/*---------------------------------------------------------------------------*/
function url_encode(str) {
	var n;
	var url_text = "";
	for( n=0 ; n<str.length ; n++ ) {
		var c = str.charCodeAt(n);
		switch( c ) {
			case 0x20:	url_text += "+";	break;
			case 0x22:	url_text += "%22";	break;
			case 0x25:	url_text += "%25";	break;
			case 0x26:	url_text += "%26";	break;
			default:	url_text += String.fromCharCode(c);
		}
	}
	return url_text;
}
function search_google()
{
	window.location="http://www.google.com/search?hl=en&as_q="+url_encode(document.my_form.rawText.value)+"&num=100&as_occt=any&safe=images&as_sitesearch=atclifebuilders.com";
	return false;
}
function get_display_height()
{
	var myHeight = 0;
	if( typeof(window.innerHeight) == 'number' ) {	//Non-IE
		myHeight = window.innerHeight;
	} else if( document.documentElement && document.documentElement.clientHeight ) {	//IE 6+ in 'standards compliant mode'
		myHeight = document.documentElement.clientHeight;
	}
	else if( document.body && (document.body.clientHeight || document.body.clientHeight) ) {	//IE 4 compatible
		myHeight = document.body.clientHeight;
	}
	return myHeight;
}
function get_display_width()
{
	var myWidth = 0;
	if( typeof(window.innerWidth) == 'number' ) {	//Non-IE
		myWidth = window.innerWidth;
	} else if( document.documentElement && document.documentElement.clientWidth ) {	//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
	}
	else if( document.body && (document.body.clientWidth || document.body.clientHeight) ) {	//IE 4 compatible
		myWidth = document.body.clientWidth;
	}
	return myWidth;
}
function display_prefix()
{
	var myWidth = get_display_width();
	document.write('<FORM NAME="my_form" style="position:absolute; top:20px; left:'+(myWidth-195)+'px" onsubmit="return search_google()">');
	document.write('<INPUT TYPE="text" NAME="rawText" SIZE="20" MAXLENGTH="100" HEIGHT=18 WIDTH=50 VALUE="search..." onblur="if(this.value==\'\') this.value=\'search...\';" onfocus="if(this.value==\'search...\') this.value=\'\';"></FORM>');
	document.write('<table border=0 cellspacing=0 cellpadding=0 style="position:absolute; top:45px; left:'+(myWidth-295)+'px;"><tr>');
	document.write('<th><A style="color: #041A36; font: normal;" href="Site_Map.html">&nbsp;Site Map&nbsp;|</A>');
	document.write('<A style="color: #041A36; font: normal;" href="41_Contribution.html">&nbsp;Donate to ATC&nbsp;|</A>');
	document.write('<A style="color: #041A36; font: normal;" href="Contact_Us.html">&nbsp;Contact Us&nbsp;</A></th>');
	document.write('</tr></table>\n');
	document.write('<img style="position:absolute; top:90px; left:43px;" src="Images/ATC_Logo.png" alt="ATC"/>');
	document.write('<img style="position:absolute; top:171px; left:220px;" src="Images/ATC_Title.png" alt="Always Thinking Community"/>');
	document.write('<table border=0 cellspacing=0 cellpadding=0 width=100% style="position:absolute; top:300px; left:0px;">');
	document.write('<tr><td rowspan=2 style="height: 367px; width: '+(myWidth-(243+20+50))+'px; vertical-align: top; background-color:#FFF"><div>');
}
function open_tell_a_friend_popup() {
	window.open('tellafriend.html','page','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=570,left=50,top=50,titlebar=yes')
}
function display_postfix(region)
{
	var myHeight = get_display_height();
	var myWidth = get_display_width();
	document.write('</div></td><td style="width: 19px; vertical-align: top; background-color:#FFF"><img src="Images/WhiteTopCorner.gif"/>');
	document.write('</td><td style="width: 50px"></td>');
	document.write('<td rowspan=3 style="vertical-align: top; background-color:#162A44; width: 243px; height: '+(myHeight-475)+'px">');
	document.write('<table border=0 cellspacing=0 cellpadding=0 WIDTH=243px>');
	document.write('<TR style="height: 19px"><TD style="width: 243px"><img src="Images/SideMenuTop.gif"/></TD></TR>');
	if( region=="Home" ) {
		document.write('<TR style="height: 33px"><TD style="width: 243px; background-image: url(\'Images/SideMenu1.png\')"><A href="00_Home.html">About ATC</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu2.png\')"><A href="02_Services.html">Services</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu3.png\')"><A href="03_Programs.html">Programs</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu4.png\')"><A href="04_Action.html">Take Action</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu5.png\')"><A href="blog.html">Blog</A></TD></TR>');
		document.write('<TR style="height:  8px"><TD style="width: 243px; background-image: url(\'Images/SideMenuFiller6.png\')"></TD> </TR>');
	}
	else if( region=="About ATC" ) {
		document.write('<TR style="height: 33px"><TD style="width: 243px; background-image: url(\'Images/SideMenu1.png\')"><A href="10_Mission.html">Mission &amp; Strategy</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu2.png\')"><A href="11_Values.html">Values &amp; Vision</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu3.png\')"><A href="12_Challenges.html">Challenges &amp; Needs</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu4.png\')"><A href="13_Leadership.html">Authentic Leadership</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu5.png\')"><A href="14_Genuine.html">Genuine Expertise</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu6.png\')"><A href="15_President.html">ATC President &amp; CEO</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="16_Expertise.html">Areas of Expertise</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="17_Promises.html">Five Promises</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="18_Prospective.html">Prospective Customers</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="19_Customers.html">Customers</A></TD></TR>');
	}
	else if( region=="Services" ) {
		document.write('<TR style="height: 33px"><TD style="width: 243px; background-image: url(\'Images/SideMenu1.png\')"><A href="20_Management.html">Management Counseling</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu2.png\')"><A href="21_Spec.html">Spec Ops Management</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu3.png\')"><A href="22_Teaching.html">Teaching &amp; Training</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu4.png\')"><A href="23_Inspirational.html">Inspirational Speaking</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu5.png\')"><A href="24_Forums.html">Group Forums</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu6.png\')"><A href="25_Advocacy.html">Advocacy</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="26_Organization.html">For Your Organization</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="27_Community.html">For Your Community</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="28_Basics.html">Consulting Basics</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="29_Consultation.html">Your Initial Consultation</A></TD></TR>');
	}
	else if( region=="Programs" ) {
		document.write('<TR style="height: 33px"><TD style="width: 243px; background-image: url(\'Images/SideMenu1.png\')"><A href="30_Existing.html">Existing Programs</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu2.png\')"><A href="31_Developement.html">Programs in Development</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu3.png\')"><A href="32_LifeBuilder.html">Be a LifeBuilder</A></TD></TR>');
		document.write('<TR style="height: 78px"><TD style="width: 243px; background-image: url(\'Images/SideMenuFiller456.png\')"></TD> </TR>');
	}
	else if( region=="Take Action" ) {
		document.write('<TR style="height: 33px"><TD style="width: 243px; background-image: url(\'Images/SideMenu1.png\')"><A href="40_Inquire.html">Inquire about ATC Services</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu2.png\')"><A href="41_Contribution.html">Cash Contribution</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu3.png\')"><A href="42_NoCost.html">NO COST Contribution</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu4.png\')"><A href="43_InKind.html">In-Kind Contribution</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu5.png\')"><A href="44_Sponsorship.html">Website Sponsorship</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu6.png\')"><A href="45_Feedback.html">Provide Feedback</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="46_Register.html">Register with ATC</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="47_Tell.html">Tell Others about ATC</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu7.png\')"><A href="48_Volunteer.html">Volunteer</A></TD></TR>');
	}
	else /*if( region=="Other Information" )*/ {
		document.write('<TR style="height: 33px"><TD style="width: 243px; background-image: url(\'Images/SideMenu1.png\')"><A href="Site_Map.html">Site Map</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu2.png\')"><A href="Contact_Us.html">Contact Us</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu3.png\')"><A href="Privacy_Policy.html">Privacy Policy</A></TD></TR>');
		document.write('<TR style="height: 35px"><TD style="width: 243px; background-image: url(\'Images/SideMenu4.png\')"><A href="Terms_of_Use.html">Terms of Use</A></TD></TR>');
		document.write('<TR style="height: 8px"><TD style="width: 243px; background-image: url(\'Images/SideMenuFiller6.png\')"></TD> </TR>');
	}
	
	document.write('<TR style="height: 19px"><TD style="width: 243px"><p style="text-align: center; margin-left: 0"><br><br>To share this site with others,<br>simply click on the button below...<br><br>');
	document.write('<A style="cursor: hand" onclick=open_tell_a_friend_popup()><img src="Images/TellAFriend.gif" BORDER=0/></A><br>&nbsp</p></TD></TR></table>');
	document.write('</TD><TD style="width: 20px"/></TR>');
	document.write('<TR><TD style="width: 19px; vertical-align: bottom; background-color:#FFF"><img src="Images/WhiteBottomCorner.gif"/></TD><TD style="width: 20px"/></TR>');
	document.write('<TR><TD COLSPAN=3 style="height: 35px"></TD><TD style="width: 20px"/></TR>');
	document.write('<TR><TD COLSPAN=4>');
	document.write('<table border=0 cellspacing=0 cellpadding=0 WIDTH=100%><TR style="background-color:#041A36; height: 100px"><TD width=25%><B><U>More on ATC</U></B><br>');
	document.write('<A href="10_Mission.html">Mission &amp; Strategy</A><br>');
	document.write('<A href="11_Values.html">Values &amp; Vision</A><br>');
	document.write('<A href="12_Challenges.html">Challenges &amp; Needs</A><br>');
	document.write('</TD><TD width=25%><B><U>Programs</U></B><br>');
	document.write('<A href="30_Existing.html">Existing Programs</A><br>');
	document.write('<A href="31_Developement.html">Programs in Development</A><br>');
	document.write('<A href="32_LifeBuilder.html">Be a LifeBuilder</A><br>');
	document.write('</TD><TD width=25%><B><U>Contribute</U></B><br>');
	document.write('<A href="41_Contribution.html">Cash Contribution</A><br>');
	document.write('<A href="42_NoCost.html">No Cost Contribution</A><br>');
	document.write('<A href="43_InKind.html">In-Kind Contribution</A><br>');
	document.write('</TD><TD width=25%><B><U>Contact ATC</U></B><br>');
	document.write('<A href="29_Consultation.html">For More Information</A><br>');
	document.write('<A href="40_Inquire.html">For Services</A><br>');
	document.write('<A href="48_Volunteer.html">To Volunteer</A><br></TD></TR>');
	document.write('<TR><TD colspan=4 style="height: 18px; background-color:#213754; vertical-align: top; text-align: right">');
	document.write('<p style="text-align: right; margin-left: 0"><A href=#><img src="Images/TopButton.gif" BORDER=0/></A><img src="Images/BlueInsideCorner.gif"/></p></TD></TR>');
	document.write('<TR><TD style="background-color:#213754"/><TD COLSPAN=2 style="background-color:#213754">');
	document.write('<A href="Privacy_Policy.html">PRIVACY POLICY</A>&nbsp;|&nbsp;');
	document.write('<A href="Terms_of_Use.html">TERMS OF USE</A>&nbsp;|&nbsp;');
	document.write('<A href="Site_Map.html">Site map</A>&nbsp;|&nbsp;');
	document.write('<A href="Contact_Us.html">Contact Us</A><br>');
	document.write('&copy Copyright 2008, 2009 Always Thinking Community. All Rights Reserved.<br>');
	document.write('P.O. Box 19000 | Tucson, Arizona 85731 | 520.555.1212</TD><TD style="background-color:#213754"/></TR></table>');
	document.write('</TD><TD style="width: 20px; background-color:#041A36; vertical-align: top"><img src="Images/BlueOutsideCorner.gif"/></TD></TR></table>');
	document.write('<div id="demo" style="color:#97c4fd; position:absolute; top:244px; left:'+(myWidth-(429+80))+'px;">');
	document.write('<a href="00_Home.html"><img src="Images/Home');
	if( region=="Home" ) { document.write('2'); }
	document.write('.png" BORDER=0/></a><span id="about"><a href="01_About.html"><img src="Images/About');
	if( region=="About ATC" ) { document.write('2'); }
	document.write('.png" BORDER=0/></a></span><span id="services"><a href="02_Services.html"><img src="Images/Services');
	if( region=="Services" ) { document.write('2'); }
	document.write('.png" BORDER=0/></a></span><span id="programs"><a href="03_Programs.html"><img src="Images/Programs');
	if( region=="Programs" ) { document.write('2'); }
	document.write('.png" BORDER=0/></a></span><span id="action"><a href="04_Action.html"><img src="Images/Action');
	if( region=="Take Action" ) { document.write('2'); }
	document.write('.png" BORDER=0/></a></span><a href="Blog.html"><img src="Images/Blog.png" BORDER=0/></a></div>');
}
