//per azionare le tendine profilo utente, proponi modifica, è piaciuto a...

function mostra_profilo(id_p){
	controllo = document.getElementById('link_p'+id_p).className;
	if (controllo=="proposto_da_attivo"){
		document.getElementById('s_p'+id_p).style.display ='none';
		document.getElementById('link_p'+id_p).className ='proposto_da';
	}
	else{
	for (indice_p=1;indice_p<4;indice_p++) {

		if (indice_p==id_p) {
			document.getElementById('s_p'+indice_p).style.display ='';
			document.getElementById('link_p'+indice_p).className ='proposto_da_attivo';
		} else {
			document.getElementById('s_p'+indice_p).style.display ='none';
			document.getElementById('link_p'+indice_p).className ='proposto_da';
		}
	}
}
}
