var status;
status = 0;

function doorhandle123() {

	var door;

	if(document.getElementById("content"))
	{
		door = document.getElementById("content");
	}
	else
	{
		door = document.getElementById("contentFB");
	}

	var handle = document.getElementById("doorhandle");
	var links = document.getElementById("menu");
	if (status == 0) {
		status = 1;
		door.style.left='24px';
		handle.src='images/navigation_doorhandle_closed.gif';
		handle.style.left='2px';
		links.style.display='none';
		document.body.id="body2";
	}
	else {
		status = 0;
		door.style.left='250px';
		handle.src='images/navigation_doorhandle_open.gif';
		handle.style.left='228px';
		links.style.display='block';
		document.body.id="body1";
	}
}



