function rateThis(work_id) {
	$.get('/ajax/?rate='+work_id+'&t='+new Date().getTime(), function(data) {
		if (data=='ok') {
			$('#rateb_photo_'+work_id).hide();
			var countc = $('#ratec_photo_'+work_id).text();
			countc = parseInt(countc);
			countc=countc+1;
			$('#ratec_photo_'+work_id).text(countc);
		}
		else {
			alert(data);
		}
	});
	return false;
}

function getType() {
	var contest_id = $('#konkurs_type option:selected').val();
	if (contest_id!=0) {
		$.get('/ajax/?contest='+contest_id+'&t='+new Date().getTime(), function(data) {
			if (data=='1') {
				$('#photo_frame').hide();
				$('#text_frame').show();
				$('#submit_work').removeAttr("disabled");
			}
			else if (data=='2') {
				$('#photo_frame').show();
				$('#text_frame').hide();
				$('#submit_work').removeAttr("disabled");
			}
			else {
				$('#photo_frame').hide();
				$('#text_frame').hide();
				$('#submit_work').attr("disabled","disabled");
				alert(data);
			}
		});
	}
	else {
		$('#photo_frame').hide();
		$('#text_frame').hide();
		$('#submit_work').attr("disabled","disabled");
	}
	return false;
}
