$(function () {
	$("a").on("click", function (e) { 
        var dv = $(this).attr("href");
        $(dv).css("display", "block");
	});
});