    var current = "personal_info";

    var data = new Object();
    data["publications"] = "\
      <table>\n\
        <tr>\n\
	 <td><h3>Recent Publications</h3>\n\
	</tr>\n\
        <tr>\n\
	  <td>\n\
	      <ul>\n\
    <li><a href='http://www.biomedcentral.com/bmcimages/browse/highlyaccessed.gif'>Coppe A*, Pujolar JM*, Maes GE, Larsen PF, Hansen MM, Bernatchez L, Zane L, Bortoluzzi S. (2010).<span>Sequencing, de novo annotation and analysis of the first Anguilla anguilla transcriptome: EeelBase opens new perspectives for the study of the critically endangered European eel.</span><span>Bmc Genomics</span>. Nov 16;11(1):635. *Equally contributing first author</a></li>\n\
    <li><a href='http://nar.oxfordjournals.org/cgi/content/full/gkq423?ijkey=UsYm3CKnZZwHXu2'>Sales G*, Coppe A*, Bisognin A, Biasiolo M, Bortoluzzi S, Romualdi C (2010).<span>MAGIA, a web-based tool for MiRNA and Genes Integrated Analysis.</span><span>Nucleic Acids Res</span>. 2010 May 19. *Equally contributing first author</a></li>\n\
	<li><a href='http://bloodjournal.hematologylibrary.org/cgi/content/abstract/blood-2009-08-237495v1'>Lionetti M*, Biasiolo M*, Agnelli L, Todoerti K, Mosca L, Fabris S, Sales G, Lambertenghi Deliliers G, Bicciato S, Lombardi L, Bortoluzzi S, Neri A. Identification of microRNA expression patterns and definition of a microRNA/mRNA regulatory network in distinct molecular groups of multiple myeloma. BLOOD. 2009 Epub ahead of print. *Equally contributing first author.</a></li>\n\
	<li><a href='http://psb.stanford.edu/'>Biasiolo B, Forcato M, Possamai L, Ferrari F, Agnelli L, Lionetti M, Todoerti K, Marchiori M, Bortoluzzi S, Bicciato S. Critical Analysis of Transcriptional and Post-Transcriptional Regulatory Networks in Multiple Myeloma. PACIFIC SYMPOSIUM ON BIOCOMPUTING, in press. *Equally contributing first author</a></li>\n\
	<li><a href='/bioinfo/publications/'>... see all</a></li>\n\
	      </ul>\n\
	  </td>\n\
      </table>";



    data["software"] = "\
      <table>\n\
        <tr>\n\
	  <td> <h3>Software and Web Tools</h3>\n\
	</tr>\n\
        <tr>\n\
	  <td>\n\
	      <ul>\n\
		<li><a href='/A-MADMAN/'><b>A-MADMAN: </b>Annotation-based Microarray Data Meta-ANalysis Tool</a></li>\n\
		<li><a href='http://telethon.bio.unipd.it/bioinfo/reef/'><b>REEF:</b> Find chromosomal regions in which a specific features class is enriched</a></li>\n\
		<li><a href='http://telethon.bio.unipd.it/bioinfo/MOST/'><b>MOST:</b> Extraction of motifs in DNA sequences</a></li>\n\
		<li><a href='http://telethon.bio.unipd.it/bioinfo/Retina/suppl_material.html'><b>COOP:</b> Extraction of motifs in DNA sequences</a></li>\n\
		<li><a href='http://telethon.bio.unipd.it/bioinfo/IDEG6_form/'><b>IDEG6.2:</b> Identification of differentially expressed genes in multiple tag sampling experiments</a></li>\n\
		<li><a href='/bioinfo/software'>... see all</a></li>\n\
	      </ul>\n\
	  </td>\n\
      </table>";

    data["people"] = "\
      <table>\n\
        <tr>\n\
	  <td> <h3>Lab Members</h3>\n\
	</tr>\n\
        <tr>\n\
	  <td>\n\
	      <ul>\n\
	        <li><b>Dr. Stefania Bortoluzzi</b></li>\n\
		<li><b>Dr. Alessandro Coppe</b></li>\n\
		<li><b>Dr. Andrea Bisognin</b></li>\n\
		<li><b>Dr. Francesco Ferrari</b></li>\n\
		<li><b>Dr. Marta Biasiolo</b></li>\n\
		<li><a href='/bioinfo/people'>... see all</a></li>\n\
	      </ul>\n\
	  </td>\n\
      </table>";
      
          data['dati'] = "\
      <table>\n\
        <tr>\n\
	 <td> <h3>Data</h3>\n\
	</tr>\n\
        <tr>\n\
	  <td></td>\n\
	  <td>\n\
	      <ul>\n\
		<li><a href='/MoDi/'>Supplementary material for the manuscript:M otif discovery in promoters of genes co-localized and co-expressed during myeloid cells differentiation. Coppe et al. NAR 2008.</a></li>\n\
		<li><a href='http://www.xlab.unimo.it/GA_CDF/'>GeneAnnot-based Custom CDF</a></li>\n\
		<li><a href='/bioinfo/data'>... see all</a></li>\n\
	      </ul>\n\
	  </td>\n\
      </table>";
    

    function removeChildrenFromNode(node){
      var len = node.childNodes.length;

      while (node.hasChildNodes()){
        node.removeChild(node.firstChild);
      }
    }
    


    function over(id){
      var selectedElement = document.getElementById(id);
      selectedElement.style.borderColor = "#222222";
      var dataElement = document.getElementById("data");
      removeChildrenFromNode(dataElement);
      dataElement.innerHTML = data[id];
    }


    function out(id){
      var element = document.getElementById(id);
      element.style.borderColor = "#fff";
    }


    function setup(){
      ;
    }
    window.onload = setup;

