var qsurvey={
	processor:'/qsurvey/process.php',
	vote:function() {
		if ($("input[name=survey_answer]:checked").val() !=  undefined) {
			$.post(qsurvey.processor, { surveyID: $("input[name=surveyID]").val(), survey_answer: $("input[name=survey_answer]:checked").val(), survey_page: location.href, ajax: "1" },
				function(data){
				 $('#survey_wrapper').html(data);
			});
		}
		return false;
	}
}

