function findObj(theObj, theDoc)
{
  var p, i, foundObj;
  
  if(!theDoc) theDoc = document;
  if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  {
    theDoc = parent.frames[theObj.substring(p+1)].document;
    theObj = theObj.substring(0,p);
  }
  if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  for (i=0; !foundObj && i < theDoc.forms.length; i++) 
    foundObj = theDoc.forms[i][theObj];
  for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
    foundObj = findObj(theObj,theDoc.layers[i].document);
  if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  
  return foundObj;
}
function cambia(num) {
	obj = findObj("menu");
	switch (num) {
		case 1:
		obj.innerHTML = "-&gt; &nbsp;Il Centro Francesca";
		break;
		case 2:
		obj.innerHTML = "-&gt; &nbsp;La storia del Centro Francesca";
		break;
		case 3:
		obj.innerHTML = "-&gt; &nbsp;La Cooperativa Francesca";
		break;
		case 4:
		obj.innerHTML = "-&gt; &nbsp;Scuola per tutti";
		break;
		case 5:
		obj.innerHTML = "-&gt; &nbsp;Link utili";
		break;
		case 6:
		obj.innerHTML = "-&gt; &nbsp;Come sostenerci";
		break;
		case 7:
		obj.innerHTML = "-&gt; &nbsp;Centro Studi";
		break;
		case 8:
		obj.innerHTML = "-&gt; &nbsp;Progetti";
		break;
		case 9:
		obj.innerHTML = "-&gt; &nbsp;News";
		break;
		case 10:
		obj.innerHTML = "-&gt; &nbsp;Forum";
		break;
		case 11:
		obj.innerHTML = "-&gt; &nbsp;Eventi";
		break;
		case 12:
		obj.innerHTML = "-&gt; &nbsp;Contattaci";
		break;
		case 13:
		obj.innerHTML = "-&gt; &nbsp;Come raggiungerci";
		break;
		case 14:
		obj.innerHTML = "-&gt; &nbsp;Materiale didattico";
		break;
		case 15:
		obj.innerHTML = "-&gt; &nbsp;Photo gallery";
		break;
		default:
		obj.innerHTML = "Benvenuto nel Centro Francesca. Passa il mouse sul fiore per accedere al menù rapido.";
		break;
		
	}
}
function stampa() {
	self.print();
}