$(document).ready(function() {
	$(".link").hover(function() {
		var dropDown = "#" + $(this).attr("id") + "Dropdown";
		$(dropDown).css("visibility", "visible");
	}, function() {
		var dropDown = "#" + $(this).attr("id") + "Dropdown";
		$(dropDown).css("visibility", "hidden");
	});

});
