/**
 * @author addsy
 */
function togglesidebars()
{
	sn = findObj("supp-nav");
	sc = findObj("supp_content");
	
	mc = findObj("maincontent");
	co = findObj("content");
	
	if (sn.style.display == "none") 
	{
		sn.style.display = "";
		sc.style.display = "";
		
		co.style.cssFloat = "left";
		co.style.width = "520px";
		co.style.margin = "";
		
		mc.style.cssFloat = "right";
		mc.style.width = "744px";
		mc.style.margin = "";
	}
	else 
	{
		sn.style.display = "none";
		sc.style.display = "none";
		
		co.style.cssFloat = "none";
		co.style.width = "780px";
		co.style.margin = "0px auto";
		
		mc.style.cssFloat = "none";
		mc.style.width = "780px";
		mc.style.margin = "0px auto";
	}
}