zdjecie = []
opinia = []
film = []

function ocen_zdjecie(id) {
	if(zdjecie[id] != true)
		for (x = 1; x <= id; x++) {
			srcgraph_on = 'grafika/oceny_male/'+x+'_on.gif';	
			document.getElementById('imgNotePht' + x).src = srcgraph_on; //change the image
        	zdjecie[x] = true; //change the value for this ocenhotel in the array
		}
    else
		for (x = 5; x > id; x--) {
			srcgraph_off = 'grafika/oceny_male/'+x+'_off.gif';
			document.getElementById('imgNotePht' + x).src = srcgraph_off;
			zdjecie[x] = false;
		}
	document.getElementById('foto').value = id; //change the field value
}

function ocen_film(id) {
	if(film[id] != true)
		for (x = 1; x <= id; x++) {
			srcgraph_on = 'grafika/oceny_male/'+x+'_on.gif';	
			document.getElementById('imgNoteMov' + x).src = srcgraph_on; //change the image
        	film[x] = true; //change the value for this ocenhotel in the array
		}
    else
		for (x = 5; x > id; x--) {
			srcgraph_off = 'grafika/oceny_male/'+x+'_off.gif';
			document.getElementById('imgNoteMov' + x).src = srcgraph_off;
			film[x] = false;
		}
	document.getElementById('ocena_film').value = id; //change the field value
}

function ocen_opinie(id) {
	if(opinia[id] != true)
		for (x = 1; x <= id; x++) {
			srcgraph_on = 'grafika/oceny_male/'+x+'_on.gif';	
			document.getElementById('imgNoteOpn' + x).src = srcgraph_on; //change the image
        	opinia[x] = true; //change the value for this ocenhotel in the array
		}
    else
		for (x = 5; x > id; x--) {
			srcgraph_off = 'grafika/oceny_male/'+x+'_off.gif';
			document.getElementById('imgNoteOpn' + x).src = srcgraph_off;
			opinia[x] = false;
		}
	document.getElementById('opinia').value = id; //change the field value
}