function populate(id)
{
	var servicesinfo = "";
	var aboutusinfo = "";
	var resourcesinfo = "";
/*	
	servicesinfo = "<a href='marketing_services.php'>Marketing Services</a> &bull; <a href='pricing.php'>Pricing</a> &bull; <a href='testimonials.php'>Testimonials</a> &bull; <a href='faq.php'>FAQ</a> &bull; <a href='informational_downloads.php'>Informational Downloads</a>";
	servicesinfo = "<a href='marketing_services.php'>Marketing Services</a> &bull; <a href='pricing.php'>Pricing</a> &bull; <a href='testimonials.php'>Testimonials</a> &bull; <a href='guarantee.php'>Guarantee</a>";
*/
	servicesinfo = "<p align=left><a href='paid_search_services.php'>Pay Per Click</a> &bull; <a href='web_analytics.php'>Web Analytics</a> &bull; <a href='web_optimizer.php'>Web Optimizer</a> &bull; <a href='pricing.php'>Pricing</a> &bull; <a href='testimonials.php'>Testimonials</a> &bull; <a href='guarantee.php'>Guarantee</a></p>";
	
	aboutusinfo = "<a href='team.php'>Team</a> &bull; <a href='talent.php'>Talent</a> &bull; <a href='clients.php'>Clients</a> &bull; <a href='news.php'>News</a> &bull; <a href='video.php'>Video</a> &bull; <a href='community_outreach.php'>Outreach</a> &bull; <a href='careers.php'>Careers</a>";

	resourcesinfo = "<a href='http://snaphawk.blogspot.com'>Blog</a> &bull; <a href='informational_downloads.php'>Info Downloads</a> &bull; <a href='faq.php'>FAQ</a>";
	
  partnersinfo = "<a href='current_partners.php'>Current Partners</a> &bull; <a href='new_partners.php'>New Partners</a>";

  clear_all_submenus();
  /* FIXME - This could be coded a LOT cleaner */	
	if (id=='services')
		{
			document.getElementById(id).innerHTML=servicesinfo;
		}

	if (id=='aboutus')
		{
			document.getElementById(id).innerHTML=aboutusinfo;
		}
	if (id=='resources')
		{
			document.getElementById(id).innerHTML=resourcesinfo;
		}
	if (id=='partners')
		{
			document.getElementById(id).innerHTML=partnersinfo;
		}

}//populate

function clear_all_submenus() {
	document.getElementById('aboutus').innerHTML="";			
	document.getElementById('partners').innerHTML="";
	document.getElementById('services').innerHTML="";			
	document.getElementById('resources').innerHTML="";			
}
function showBlock(blockId)
{
  document.getElementById(blockId).style.display = "block";
}
function hideBlock(blockId)
{
  document.getElementById(blockId).style.display = "none";
}

	
