$(document).ready(function(){
	$('#surveyForm').submit(function(){
		$('#surveyForm').ajaxSubmit({
			method: 'POST',
			url: '/index/survey-result/',
			target: '#surveyBlock'
		});
		return false;
	});
});

function unroll() {
	$('#_unroll').css({height:'619px'});
}

function roll() {
	$('#_unroll').css({height:'260px'});
}
