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!='diningchair3') contract2nav('diningchair3');
	if(notthisone!='director3') contract2nav('director3');
	if(notthisone!='throw3') contract2nav('throw3');
	if(notthisone!='mirrors3') contract2nav('mirrors3');
	if(notthisone!='hides3') contract2nav('hides3');
	if(notthisone!='accessories3') contract2nav('accessories3');
	if(notthisone!='xaccessories3') contract2nav('xaccessories3');
}

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