function hideshow(id){
	if (!document.getElementById) return;
	var qEId1=document.getElementById(id).style;
	var qEId2=document.getElementById('img'+id);
	if (qEId1.display=="none"){ qEId1.display=""; if(qEId2) qEId2.src="/services/images/items/menuclose.gif"; } 
	else { qEId1.display="none"; if(qEId2) qEId2.src="/services/images/items/menuopen.gif"; }
}
function hide(id){
	if (!document.getElementById) return;
	var qEId1=document.getElementById(id).style;
	var qEId2=document.getElementById('img'+id);
	if (qEId1.display=="") { qEId1.display="none"; if(qEId2) qEId2.src="/services/images/items/menuopen.gif"; }
}
// PageWidth copyright Stephen Chapman, 3rd Jan 2005, 8th Dec 2005: http://javascript.about.com/od/guidesscriptindex/a/screen.htm
function classroomPageWidth() {return window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body != null ? document.body.clientWidth : null;} 
if ((classroomPageWidth()<960)) {document.write('<style type="text/css">#header, #contentContainer, #footer {width:750px} #content {width:550px} .homeSection {margin: 0 10px 15px 5px} .breadcrumbs {width:555px} .mmReturn {width:735px} #frontPage img {display:none}</style>');}
