$(document).ready(function() {
	$("#satisfactionGuarantee").toggle(0);
	$("#deliveryInfo").toggle(0);

	$("#toggleSatisfactionGuarantee").click(function () {
		$("#satisfactionGuarantee").toggle("slow");
	});

	$("#toggleDeliveryInfo").click(function () {
		$("#deliveryInfo").toggle("slow");
	});
});
