2014hs.igem.org/Team:RAMNOTIREN CALGARY/Team

From 2014hs.igem.org

(Difference between revisions)
Line 170: Line 170:
         -o-transform: rotate(1000deg);   
         -o-transform: rotate(1000deg);   
     }   
     }   
 +
Line 222: Line 223:
     });
     });
   
   
 +
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js"></script>
 +
 +
<script type="text/javascript">
 +
$(document).ready(function(){
 +
  var nam = new Array();
 +
  nam[1] = "Ankush Garg";
 +
  nam[2] = "Kevin Klemmer";
 +
  nam[3] = "Jamie Harris";
 +
  nam[4] = "Alex Harrison";
 +
  nam[5] = "Connor Macleod";
 +
  nam[6] = "Maggie Dingwell";
 +
  nam[7] = "Nikita George";
 +
  nam[8] = "Eire Murphy";
 +
  nam[9] = "Traelyn Rachar";
 +
  nam[10] = "Ella Brennan";
 +
  nam[11] = "Crystal Vos";
 +
  var des = new Array();
 +
  des[1] = "Ankush is a third year biochemist who wants to do a PhD in synthetic biology. He is master of pipetting and is king of XylE assays and data analysis.";
 +
  des[2] = "Kevin is just about to start a Master’s in Systems Biology and is our Bioinformatics guru! As a member of the vectors team, he spent hours cloning things that didn’t want to clone... He's had the most life experience of all of us and consequently knows everything...";
 +
  des[3] = "As a third year biologist, Jamie's lab skills were put to good use assembling and testing the surface protein. His knowledge of parasitic diseases is second to none and he has become a schistosoma expert in the last few months!";
 +
  des[4] = "Alex is an absolute legend when it comes to modelling biological systems. He’s a third year bioengineer who likes to cycle the length of the Thames before coming into uni. He is a sweet talking and smooth moving on the dance floor devil - you have to check out this guy's moves!";
 +
  des[5] = "Connor is a third year bioengineer and the wiki god of the team. His artistic talents usually leave us lost for words, usually for the right reasons… He also has a taste for buzzwords and can speak fluently in all forms of computer code...";
 +
  des[6] = "Our Sri Lankan lab goddess, Maggie, is just about to start an MRes in Cardriovascular Science at the NHLI, having studied bioengineering at IC. She can usually be found late at night in the lab, running gels and making overnight cultures.";
 +
  des[7] = "Nikita is a third year biochemist with a passion for NTDs and public health. She was on the surface protein lab team, wrote the Human Practices Report and organised the school workshops. She has talked to many experts and provided valuable resources and info for the team, what a star.";
 +
  des[8] = "A third year biologist, Eire would like to work on bridging the gap between science and clinical medicine. Next to working as our lab-coordinator, he throws amazing parties (which isn't surprising, as he hails from Berlin) and has an amazing singing voice. Karaoke anyone?";
 +
  des[9] = "Having done 3 years of biochemistry, Traelyn has just started a course in Business Management. As one of the more creative members of the team, she designed our logo and edited videos. She also put in a billion lab hours to ensure all XylE constructs were built - they were.";
 +
  des[10] = "Ella is a third year bioengineer. She has formed half of the modelling team and mixes up her time with wiki editing. She is most excited to shop for clothes and Ugg boots in Boston!";
 +
  des[11] = "A distinguished enginer who gets a kick out of modelling and differential equations. Crystals is always pushing the engineering side of synthetic biology and knows exactly what experiments and models we need to get done."
 +
  $("#face1").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[1]);
 +
  $("#teamful").append(des[1]);
 +
  });
 +
  $("#face2").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[2]);
 +
  $("#teamful").append(des[2]);
 +
  });
 +
  $("#face3").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[3]);
 +
  $("#teamful").append(des[3]);
 +
  });
 +
  $("#face4").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[4]);
 +
  $("#teamful").append(des[4]);
 +
  });
 +
  $("#face5").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[5]);
 +
  $("#teamful").append(des[5]);
 +
  });
 +
  $("#face6").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[6]);
 +
  $("#teamful").append(des[6]);
 +
  });
 +
  $("#face7").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[7]);
 +
  $("#teamful").append(des[7]);
 +
  });
 +
    $("#face8").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[8]);
 +
  $("#teamful").append(des[8]);
 +
  });
 +
  $("#face9").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[9]);
 +
  $("#teamful").append(des[9]);
 +
  });
 +
  $("#face10").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[10]);
 +
  $("#teamful").append(des[10]);
 +
  });
 +
  $("#face11").mouseenter(function() {
 +
  $("#teamnam").empty();
 +
  $("#teamful").empty();
 +
  $("#teamnam").append(nam[11]);
 +
  $("#teamful").append(des[11]);
 +
  });
 +
});
</script>
</script>

Revision as of 03:55, 27 May 2014