function showDiv(id) {
	for (var i = 1; i < 6; i++){
		var theDiv = document.getElementById('res' + i);
		var thePlus = document.getElementById('tab' + i);
		var theLink = document.getElementById('link' + i);
		var theCont = document.getElementById('upperFooter');
		if (id < 1) {
			id = 1;
		}
		if (i == id) {
			theDiv.style.display = "";
			thePlus.style.background = 'url(/g/submenu-on.gif) top left repeat-x';
			theLink.style.color = '#fff';
			theCont.style.bottom = '';
			theCont.style.bottom = '0';
		} else {
			theDiv.style.display = "none";
			thePlus.style.background = 'url(/g/submenu-off.gif) top left repeat-x';
			theLink.style.color = '#555';
			theCont.style.bottom = '';
			theCont.style.bottom = '0';
		}
	}
}