﻿
$(document).ready(function() {
 	 
	if ($.cookie("mailingListClosedb") == null && $.cookie("mailingListNeverShowb") == null) {
		$("#mailingListPanelSlide").delay(2000).slideDown("slow");
	};

	// Trigger for close panel button. Close panel and set session cookie
	$("a#closeButton").click(function () {
		$("div#mailingListPanelSlide").slideUp("slow");
		$.cookie("mailingListClosedb", "true", { path: "/" });
	});

	// calculate a 30mins 0r 10mins expire time for cookies...
	var date = new Date();
	date.setTime(date.getTime() + (5 * 60 * 1000)); // 5 mins expire time...

	// Trigger for never show panel button. Close panel and set persistent cookie
	$("p.negativeActionFormButton").click(function () {
		$("div#mailingListPanelSlide").slideUp("slow");
		$.cookie("mailingListNeverShowb", "true", { expires: date, path: "/" });
	});

	// Set persistent cookie if user clicks on the newsletter button as well
	$("p.genericLinkButton").click(function () {
		$.cookie("mailingListNeverShowb", "true", { expires: date, path: "/" });
	});

})
