function zapisz(form,plik,div) {
	var queryString = $('#'+form).formSerialize(); 
	$.post(plik, queryString, function(data){
		document.getElementById(div).innerHTML=data;
	});
}
function odczytaj(plik,div) {
	$.get(plik, function(data){
	  document.getElementById(div).innerHTML=data;
	});
}

function ocen_over(div, id) {
	for (i=1; i<=id; i++) {
		document.getElementById('ocena_'+div+'_'+i).alt=document.getElementById('ocena_'+div+'_'+i).className;
		document.getElementById('ocena_'+div+'_'+i).className='vote_over';
	}
}
function ocen_out(div, id) {
	for (i=1; i<=id; i++) {
		document.getElementById('ocena_'+div+'_'+i).className=document.getElementById('ocena_'+div+'_'+i).alt;
		document.getElementById('ocena_'+div+'_'+i).alt=null;
	}
}

