(function($) {
	
	var SURVEY_URL = "https://www.surveymonkey.com/s/F8YTFDJ";
	var COOKIE_NAME = "F8YTFDJ";
	
	$(function() {
		$(".Survey-BehindTheScenes a.start").click(function() {
			window.open(SURVEY_URL, "_blank");
			$(".Survey-BehindTheScenes").hide();
		});
		
		$(".Survey-BehindTheScenes a.close").click(function() {
			$(".Survey-BehindTheScenes").hide();
		});
		
		function getExpiryDate() {
			var date = new Date();
			return new Date(date.setMonth(date.getMonth() + 1));
		}
		
		function canDisplaySurvey() {
			return false; //!$.cookies.get(COOKIE_NAME);
		}
		
		function displaySurvey() {
			var popup = $(".Survey-BehindTheScenes");
			popup.show().css({left: ($("body").width() - popup.find("img").width()) / 2});
			$.cookies.set(COOKIE_NAME, 1, {expiresAt: getExpiryDate()});
		}
		
		if (canDisplaySurvey()) displaySurvey();
	});
	
})(jQuery);

