
bodyloadfunction(function() {
	if (isIE) {
		var cam = document.getElementById('camera');
		cam.parentNode.removeChild(cam);
		// append to .inner instead; this at least fixes it in the right position
		var cam = document.createElement('DIV');
		cam.id = 'camera';
		cam.style.display = 'block';
		document.getElementById('main').getElementsByTagName('DIV')[0].appendChild(cam);
	}
});
