
	function showDiv(whichItem) {
		var whichDiv = document.getElementById(whichItem);
		$(".divExpand").each(function() { $(this).hide(); });
		$(whichDiv).fadeIn(500);
	}
