 $(document).ready(function() {
	
	// check for presence of 'hide_survey_invite' cookie, then call this if allowed:
	/*if (!$.cookie('hide_survey_invite') ) {
		setTimeout('displaySurveyInvite()', 3500);
	}*/
	//upon clicking of checkbox, create cookie; if unchecked, wipe the cookie
	$('#dontshowagain').click(function() {
		if ( this.checked ) {
			//bakecookie();
			//alert('creating cookie, so you don\'t see this again...');
			$.cookie('hide_survey_invite', 'true', {expires: 7, path: '/', domain: 'flux.futurelab.org.uk'});
		}
		else {
		//	$.cookie('hide_survey_invite', '', {expires: -1});			
		}
	});
	
	// when clicked, close window
	$('.close_survey_invite').click(function() {
		$('#please_take_our_survey').fadeOut('slow');
		return false;
	});	
});
 
 function displaySurveyInvite() {
	$('#please_take_our_survey').fadeIn('slow');
 }
 
 function bakecookie() {
	 
 }