$(document).ready(function(){
	var showDialog = true;
	
	if($.cookie('askMe') > 0){
		showDialog = false;
	}

	$('#survey-popup').dialog({width: 600,autoOpen: showDialog});
	$('#illHelp').click(function(){
		$('#survey-popup').dialog('close');
		window.open('http://survey.askme.net/Participants/startSurvey/221','','width=760,height=800,scrollbars=1');
	});
	$('#noThanks').click(function(){
		$('#survey-popup').dialog('close');
	});

	$.cookie('askMe',1,{expires: 1000});
});

