
$(document).ready(function() {
	var SURVEY_COOKIE_NAME = 'survey_visit';
	var options = { path: '/', expires: 1000 };

	surveyCookieVal = $.cookie(SURVEY_COOKIE_NAME);
	if (surveyCookieVal != 1) {
		// Open the survey modal window
		open_survey_box();

		// Bind the click events to the 2 buttons
		$('#survey_yes').bind('click', function() {
			// Set the "visited" cookie
			$.cookie(SURVEY_COOKIE_NAME, '1', options);

			close_survey_box();
			window.open('http://survey.constantcontact.com/survey/a07e2wul9ylg9oafpbk/start', 'survey', '');
			return false;
		});

		$('#survey_no').bind('click', function() {
			// Set the "visited" cookie
			$.cookie(SURVEY_COOKIE_NAME, '1', options);

			close_survey_box();
		});
	}

	// -- Examples --

	// example: set cookie by number of days
	// $.cookie(SURVEY_COOKIE_NAME, 'test', options);

	// example: get cookie
	// alert($.cookie(SURVEY_COOKIE_NAME));

	// example: delete cookie
	// $.cookie(SURVEY_COOKIE_NAME, null, options);
});


function open_survey_box() {
	 $('#light, #fade').css('display', 'block');
}


function close_survey_box() {
	$('#light, #fade').css('display', 'none');
}


