function showDiv(id) {
	for (var i = 1; i < 5; i++){
		var theDiv = document.getElementById('res' + i);
		var thePlus = document.getElementById('tab' + i);
		var theLink = document.getElementById('link' + i);
		var theCont = document.getElementById('footer');
		if (id < 1) {
			id = 1;
		}
		if (i == id) {
			theDiv.style.display = "";
			theLink.style.color = '#000';
			theCont.style.bottom = '';
			theCont.style.bottom = '0';
		} else {
			theDiv.style.display = "none";
			theLink.style.color = '#666';
			theCont.style.bottom = '';
			theCont.style.bottom = '0';
		}
	}
}