$(document).ready(function(){

	var cookieVal = $.cookie("askme_survey");
	var test = $.query.get('test');

	if(cookieVal != 1 || test == "1"){
		$.cookie("askme_survey",1,{expires: 999});
		$('#surveyWindow').jqm();
		$('#surveyWindow').jqmShow();
	}

	$('#surveyButton').click(function(){
		$('#surveyWindow').jqmHide();
		window.open('http://survey.askme.net/Participants/startSurvey/205','','width=760,height=800,scrollbars=1');
	});

	$('#surveyButton2').click(function(){
		$('#surveyWindow').jqmHide();
	});
});
