var objHTTP1 = HttpRequestObject();
function Init(){			
	var currTabElem = document.getElementById('Toggle');
	if (ToggleState=='On'){			
		currTabElem.setAttribute("class", "starburst-buttonUP");
		currTabElem.setAttribute("className", "starburst-buttonUP");
		document.getElementById('header').style.display='block';
		$("#Navholder").css('width','840px');		
	}
	else{
		currTabElem.setAttribute("class", "starburst-buttonDOWN");
		currTabElem.setAttribute("className", "starburst-buttonDOWN");
		$("#TinyLogo").css('width','48px');
		document.getElementById('header').style.display='none';
	}
}
