/**
 * @author slimchrisp
 */
function showSitemap()
{
  Element.hide('sitemap');
  document.getElementById('sitemap').style.visibility = 'visible';
  Effect.Appear('sitemap');
  document.getElementById('sitemap_bar').innerHTML = '<a href=\"javascript: hideSitemap();\">hide sitemap</a>';
}
		
function hideSitemap()
{
	Effect.Fade('sitemap');
    document.getElementById('sitemap_bar').innerHTML = '<a href=\"javascript: showSitemap();\">sitemap</a>';
}

function showSection(id)
{
	Element.hide('section1_con');
	Element.hide('section2_con');
	Element.hide('section3_con');
	Element.hide('section4_con');
	Element.hide('section5_con');
	Element.hide('section6_con');
	
	Effect.SlideUpAndDown(id);
//	document.getElementById(id).scrollIntoView;
}