function Loader(){
	/*******************/
	/* Footer Functions*/
	document.getElementById("xcelConsultants_footer_home_link").innerHTML = "<span class='black'>Xcel</span> <span class='ecoGreen'>Consultants</span>";
	document.getElementById("xcelConsultants_footer_contact_link").innerHTML = "<span class='xcelBlue'>Contact</span> <span class='black'>Xcel</span> <span class='ecoGreen'>Consultants</span>";
	addEvent(document.getElementById("xcelConsultants_footer_home_link"), "mouseover", FooterOverHome);
	addEvent(document.getElementById("xcelConsultants_footer_home_link"), "mouseout", FooterOutHome);
	addEvent(document.getElementById("xcelConsultants_footer_contact_link"), "mouseover", FooterOverContact);
	addEvent(document.getElementById("xcelConsultants_footer_contact_link"), "mouseout", FooterOutContact);
	/* Footer Functions*/
	/*******************/
	
	/*******************/
	/* Tab Functions*/		
	document.getElementById("tab").innerHTML = "<div id='homeEnvSpacer'></div>	<div id='xcelHomeLinkHolder'><span id='xcelConsultantsHomeLink' class='xcelConsultantsHomeLinkStatic'>Xcel Consultants, Inc.</span><span class='xcelBlue' id='xcelConsultantsHomeText'>XCEL Home</span></div><div id='xcelContactLinkHolder'><span id='xcelConsultantsContactLink' class='xcelConsultantsContactLinkStatic'>Contact Xcel Consultants, Inc.</span><span class='xcelBlue' id='xcelConsultantsContactText'>Contact XCEL</span></div><a href='default.html' target='_self' title='Xcel Consultants Main Page'><span id='xcelConsultantsLogo'></span></a>";

	addEvent(document.getElementById("xcelHomeLinkHolder"), "mouseover", HomeOver);
	addEvent(document.getElementById("xcelHomeLinkHolder"), "mouseout", HomeOut);
	addEvent(document.getElementById("xcelContactLinkHolder"), "mouseover", ContactOver);
	addEvent(document.getElementById("xcelContactLinkHolder"), "mouseout", ContactOut);
	addEvent(document.getElementById("xcelHomeLinkHolder"), "click", HomeClick);
	addEvent(document.getElementById("xcelContactLinkHolder"), "click", ContactClick);
	/* Tab Functions*/
	/*******************/
	EmailScrambler();
}
function ContactClick(){
	document.location = document.getElementById("xcelConsultants_footer_contact_link").getAttribute("href");
}
function ContactOver(){
	document.getElementById("xcelConsultantsContactLink").className = "xcelConsultantsContactLinkOver";
	document.getElementById("xcelConsultantsContactText").className = "ecoGreen";
	document.getElementById("xcelContactLinkHolder").className = "xcelContactLinkHolderOver";
}
function ContactOut(){
	document.getElementById("xcelConsultantsContactLink").className = "xcelConsultantsContactLinkStatic";
	document.getElementById("xcelConsultantsContactText").className = "xcelBlue";
	document.getElementById("xcelContactLinkHolder").className = "";
}
function HomeClick(){
	document.location = document.getElementById("xcelConsultants_footer_home_link").getAttribute("href");
}
function HomeOver(){
	document.getElementById("xcelConsultantsHomeLink").className = "xcelConsultantsHomeLinkOver";
	document.getElementById("xcelConsultantsHomeText").className = "ecoGreen";
	document.getElementById("xcelHomeLinkHolder").className = "xcelHomeLinkHolderOver";
}
function HomeOut(){
	document.getElementById("xcelConsultantsHomeLink").className = "xcelConsultantsHomeLinkStatic";
	document.getElementById("xcelConsultantsHomeText").className = "xcelBlue";
	document.getElementById("xcelHomeLinkHolder").className = "";

}
function FooterOverHome(){
	document.getElementById("xcelConsultants_footer_home_link").children[0].className = "ecoGreen";
	document.getElementById("xcelConsultants_footer_home_link").children[1].className = "xcelBlue";
}
function FooterOutHome(){
	document.getElementById("xcelConsultants_footer_home_link").children[0].className = "black";
	document.getElementById("xcelConsultants_footer_home_link").children[1].className = "ecoGreen";	
}
function FooterOverContact(){
	document.getElementById("xcelConsultants_footer_contact_link").children[0].className = "ecoGreen";
	document.getElementById("xcelConsultants_footer_contact_link").children[1].className = "ecoGreen";
	document.getElementById("xcelConsultants_footer_contact_link").children[2].className = "xcelBlue";
}
function FooterOutContact(){
	document.getElementById("xcelConsultants_footer_contact_link").children[0].className = "xcelBlue";
	document.getElementById("xcelConsultants_footer_contact_link").children[1].className = "black";
	document.getElementById("xcelConsultants_footer_contact_link").children[2].className = "ecoGreen";
}
