jQuery(document).ready(function($) {
	$(".dbox").hide();
	$(".view-text").click(function () {
		$(".dbox").fadeIn();
	});
	$(".close-text").click(function () {
		$(".dbox").fadeOut();
	});
});
