// JavaScript Document
function funMenu(argPage)
{
	str="";
	str+="<ul>";
	if(argPage=='index')
	{
		str+="<li><a href='"+ linkPath + "index.html' class='active'><span> HOME</span></a></li>";		
	}
	else
	{
		str+="<li><a href='" + linkPath + "index.html'><span> HOME</span></a></li>";	
	}
	if(argPage=='about')
	{
		str+="<li><a href='" + linkPath + "about.html' class='active'><span>ABOUT</span></a></li>";		
	}
	else
	{
		str+="<li><a href='" + linkPath + "about.html'><span>ABOUT</span></a></li>";	
	}
	if(argPage=='services')
	{
		str+="<li><a href='" + linkPath + "services.html' class='active'><span>SERVICES</span></a></li>";		
	}
	else
	{
		str+="<li><a href='" + linkPath + "services.html'><span>SERVICES</span></a></li>";	
	}
	if(argPage=='news')
	{
		str+="<li><a href='" + linkPath + "news.html' class='active'><span>NEWS</span></a></li>";		
	}
	else
	{
		str+="<li><a href='" + linkPath + "news.html'><span>NEWS</span></a></li>";	
	}
	if(argPage=='contact')
	{
		str+="<li><a href='" + linkPath + "contact.html' class='active'><span>CONTACT</span></a></li>";		
	}
	else
	{
		str+="<li><a href='" + linkPath + "contact.html'><span>CONTACT</span></a></li>";	
	}
	str+="</ul>";
	document.write(str);
}

function funFooter()
{
	str="";
	str+="<div class='footer_links'>";
	str+="<a href='" + linkPath + "index.html'>Home</a>&nbsp;&nbsp; | &nbsp;&nbsp;<a href='" + linkPath + "about.html'>About</a>&nbsp;&nbsp; | &nbsp;&nbsp;<a href='" + linkPath + "services.html'>Services</a>&nbsp;&nbsp; | &nbsp;&nbsp;<a href='" + linkPath + "news.html'>News</a>&nbsp;&nbsp; | &nbsp;&nbsp;<a href='" + linkPath + "contact.html'>Contact Us</a> </div>";
	str+="<span>©  2009 Aerospatia LLC, All Rights Reserved.&nbsp;</span>";
	document.write(str);
}
