// JavaScript Document
var isInMenu = false;

function switchSpan(menu)
{
	if (menu == 'home')
	{
		document.getElementById('nav').style.paddingLeft = '42px';
		document.getElementById('subnav').innerHTML = '&nbsp;';
	}
	else if (menu == 'about')
	{
		document.getElementById('nav').style.paddingLeft = '100px';
		document.getElementById('subnav').innerHTML = '<a href="/about/">About Us</a> | <a href="/about/quality.php">Quality Control</a> | <a href="/about/community.php">A Commitment to Community</a> | <a href="/about/contact.php">Contact Us</a>';
	}
	else if (menu == 'services')
	{
		document.getElementById('nav').style.paddingLeft = '165px';
		document.getElementById('subnav').innerHTML = '<a href="/services/">Our Services</a> | <a href="/services/audit.php">Audit</a> | <a href="/services/taxfinancial.php">Tax</a> | <a href="/services/smallbusiness.php">Small Business</a> | <a href="/services/financial.php">Financial Planning</a> | <a href="/services/consulting.php">Consulting</a>';
	}
	else if (menu == 'focus')
	{
		document.getElementById('nav').style.paddingLeft = '225px';
		document.getElementById('subnav').innerHTML = '<a href="/focus/">Our Focus</a> | <a href="/focus/pcg.php">Private Client Group</a> | <a href="/focus/notforprofit.php">Not-For-Profit</a> | <a href="/focus/professional.php">Professional Service Firms</a>';
	}
	else if (menu == 'professionals')
	{
		document.getElementById('nav').style.paddingLeft = '302px';
		document.getElementById('subnav').innerHTML = '<a href="/professionals/">Our Professionals</a> | <a href="/professionals/employment.php">Employment Opportunities</a> | <a href="/professionals/staffnews.php">Staff News</a> | <a href="/professionals/login.php">Staff Portal</a>';
	}
	else if (menu == 'resources')
	{
		document.getElementById('nav').style.paddingLeft = '382px';
		document.getElementById('subnav').innerHTML = '<a href="/tools.htm">Tools</a> | <a href="/resources/links.php">Links</a> | <a href="/resources/faq.php">FAQs</a> | <a href="/resources/techtips.php">Tech Tips</a>';
	}
	else if (menu == 'news')
	{
		document.getElementById('nav').style.paddingLeft = '442px';
		document.getElementById('subnav').innerHTML = '<a href="http://www.bayliscpas.com/news/view_articles.php?cat=6">Firm News</a> | <a href="http://www.bayliscpas.com/news/view_articles.php">Articles</a> | <a href="/news/newsletter.php">Newsletters</a> | <a href="/news/seminar.php">Seminars</a>';
	}
	else if (menu == 'clientcenter')
	{
		document.getElementById('nav').style.paddingLeft = '495px';
		document.getElementById('subnav').innerHTML = '<a href="/client/">Secure Document Exchange</a> | <a href="/client/">Online Payment</a> | <a href="/client/">Tax Organizer</a> | <a href="/client/">Financial Planning Tools</a>';
	}
}

function clearSpan(menu)
{
	switchSpan(menu);
}
