$(function() {
	$('.db').hover(
		function () {
			clickId = $(this).attr('id');
			$('.dn#' + clickId).show();
		},
		function () {
			clickId = $(this).attr('id');
			$('.dn#' + clickId).hide();
		}
	);
});

