function showTips (Object1, Object2, attrName) {
	$(Object1).hover(
		function() {var thisID = $(this).attr(attrName); $(Object2 + thisID).fadeIn();},
		function() {var thisID = $(this).attr(attrName); $(Object2 + thisID).hide();}
	);
};

