function expand2nav(id,plusid) {
	e=document.getElementById(id);
	f=document.getElementById(plusid);
	if (e.style.display == 'none' || e.style.display =="") {
		e.style.display = 'block';
		f.src = "images/contract.gif";
	} else {
		e.style.display = 'none';
		f.src = "images/expand.gif";
	}
}
function hide2all(notthisone) {
	if(notthisone!='beanbags3') contract2nav('beanbags3');
	if(notthisone!='footstools3') contract2nav('footstools3');
	if(notthisone!='throw3') contract2nav('throw3');
	if(notthisone!='hides3') contract2nav('hides3');

}

function contract2nav(id) {
	e=document.getElementById(id);
	e.style.display = 'none';
}

