Team:Warsaw/Team
From 2011.igem.org
(Difference between revisions)
(Prototype team page) |
|||
(19 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
- | + | __NOTOC__ | |
<html> | <html> | ||
- | < | + | <script type="text/javascript"> |
- | + | ActiveTab='Team'; | |
- | + | </script> | |
+ | </html> | ||
+ | |||
+ | {{TemplateTop}} | ||
+ | {{UpperTabs}} | ||
+ | {{LowerTabsTeam}} | ||
+ | |||
+ | <html> | ||
+ | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> | ||
+ | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script> | ||
+ | <script type="text/javascript"> | ||
+ | |||
+ | |||
+ | |||
+ | function changeDescription(sender) | ||
+ | { | ||
+ | document.getElementById("description").innerHTML=document.getElementById(sender.id+"_desc").innerHTML; | ||
+ | } | ||
+ | |||
+ | $(document).ready(function(){ | ||
+ | |||
+ | |||
+ | |||
+ | $(".foto").draggable({ | ||
+ | start: function(event, ui) { | ||
+ | |||
+ | |||
+ | } | ||
+ | |||
+ | }); | ||
+ | |||
+ | /*Funkcja rozmieszczania fotek. Program wylicza top i left dla kazdego zdjecia tak zeby byly wezlami grida | ||
+ | potem random rozsiewa je w zadanym promieniu wokol tych wezlow. | ||
+ | |||
+ | */ | ||
+ | |||
+ | var currtop=-50; | ||
+ | var currleft=0; | ||
+ | var currfoto=0; | ||
+ | |||
+ | /* odleglosci wezlow siatki w pionie i poziomie. Mozna zmienic zeby uzyskac wieksze/mniejhsze marginesy. */ | ||
+ | |||
+ | var hmargin=160; | ||
+ | var vmargin=210; | ||
+ | |||
+ | |||
+ | /* Kontrolujemy jak bardzo rozrzucic foty w pionie i poziomie */ | ||
+ | |||
+ | var hradius=50; | ||
+ | var vradius=50; | ||
+ | |||
+ | /* Ustawiamy pudelko z description */ | ||
+ | |||
+ | $("#description").each(function(){ | ||
+ | |||
+ | var dtop=currtop+2*vmargin; | ||
+ | var dleft=hmargin; | ||
+ | |||
+ | $(this).css('left' , dleft); | ||
+ | $(this).css('top' , dtop); | ||
+ | |||
+ | }); | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | $(".foto").each(function(){ | ||
+ | |||
+ | $(this).css('width', '120px'); | ||
+ | |||
+ | currleft = currleft + hmargin; | ||
+ | |||
+ | if (currfoto%6 == 0) | ||
+ | { | ||
+ | currtop = currtop + vmargin; | ||
+ | currleft = 0; | ||
+ | |||
+ | } | ||
+ | |||
+ | |||
+ | if (Math.ceil(Math.random()*2)%2) | ||
+ | $(this).css('top', currtop+Math.random()*vradius); | ||
+ | else | ||
+ | $(this).css('top', currtop-Math.random()*vradius); | ||
+ | |||
+ | if (Math.ceil(Math.random()*2)%2) | ||
+ | $(this).css('left', currleft-Math.random()*hradius); | ||
+ | else | ||
+ | $(this).css('left', currleft-Math.random()*hradius); | ||
+ | |||
+ | if (currfoto == 6) | ||
+ | { | ||
+ | currfoto = currfoto + 3; | ||
+ | currleft = currleft + 3*hmargin; | ||
+ | } | ||
+ | |||
+ | if (currfoto == 12) | ||
+ | { | ||
+ | currtop += 30; | ||
+ | } | ||
+ | |||
+ | currfoto = currfoto+1; | ||
+ | |||
+ | }); | ||
+ | |||
+ | $(".foto").mousedown(function(){ | ||
+ | |||
+ | $(this).css('cursor', '-moz-grabbing'); | ||
+ | $(this).css('cursor', '-o-grabbing'); | ||
+ | $(this).css('cursor', '-webkit-grabbing'); | ||
+ | }); | ||
+ | |||
+ | $(".foto").mouseup(function(){ | ||
+ | |||
+ | $(this).css('cursor', 'hand'); | ||
+ | $(this).css('cursor', 'pointer'); | ||
+ | }); | ||
+ | |||
+ | $(".foto").mouseover(function(){ | ||
+ | |||
+ | $(this).css('width', '140px'); | ||
+ | if (!$(this).is('.foto-active')) | ||
+ | $(this).css('z-index', 1); | ||
+ | |||
+ | }); | ||
+ | |||
+ | |||
+ | $(".foto").mouseout(function(){ | ||
+ | |||
+ | $(this).css('width', '120px'); | ||
+ | if (!$(this).is('.foto-active')) | ||
+ | $(this).css('z-index', 0); | ||
+ | |||
+ | }); | ||
+ | |||
+ | $(".foto").click(function(){ | ||
+ | |||
+ | changeDescription(this); | ||
+ | |||
+ | |||
+ | /*To cos podswietla fote przy kliknieciu i kasuje poswietlenie poprzedniej */ | ||
+ | |||
+ | $(".foto-active").css('z-index', 0); | ||
+ | $(".foto-active").removeClass("foto-active"); | ||
+ | |||
+ | $(this).addClass("foto-active"); | ||
+ | $(this).css('z-index', 2); | ||
+ | |||
+ | }); | ||
+ | |||
+ | $(".pic").each(function(){ | ||
+ | $(this).css('width' , '100%'); | ||
+ | |||
+ | }); | ||
+ | |||
+ | $(".foto").each(function(){ | ||
+ | var rot = Math.random()*30-15+'deg'; | ||
+ | |||
+ | /* Marta: jeżeli foty nachodzą na menu, to tylko nieznacznie */ | ||
+ | var left = (Math.random()*-60)+'px'; | ||
+ | |||
+ | /* | ||
+ | Marta: | ||
+ | var top = Math.random()*100+'px'; -> zamienione | ||
+ | zdjęcia są w odrobinę większym porządku (jak dla mnie wygląda nawet lepiej), | ||
+ | ale przede wszystkim - nie wychodzą poza prawy margines strony | ||
+ | */ | ||
+ | var top = 0+'px'; | ||
+ | |||
+ | |||
+ | $(this).css('-webkit-transform' , 'rotate('+rot+')'); | ||
+ | $(this).css('-moz-transform' , 'rotate('+rot+')'); | ||
+ | $(this).css('-o-transform' , 'rotate('+rot+')'); | ||
+ | |||
+ | var rotIE=1-Math.random()/4; | ||
+ | |||
+ | if (Math.ceil(Math.random()*2)%2) | ||
+ | { | ||
+ | $(this).css('filter', "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11="+rotIE+", M12="+(0-(1-rotIE))+", M21="+(1-rotIE)+", M22="+rotIE); | ||
+ | |||
+ | $(this).css('-ms-filter', "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11="+rotIE+", M12="+(0-(1-rotIE))+", M21="+(1-rotIE)+", M22="+rotIE); | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | $(this).css('filter', "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11="+rotIE+", M12="+(1-rotIE)+", M21="+(0-(1-rotIE))+", M22="+rotIE); | ||
+ | |||
+ | $(this).css('-ms-filter', "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11="+rotIE+", M12="+(1-rotIE)+", M21="+(0-(1-rotIE))+", M22="+rotIE); | ||
+ | } | ||
+ | |||
+ | }); | ||
+ | |||
+ | |||
+ | $(".foto").dblclick(function(){ | ||
+ | $(this).css('-webkit-transform' , 'rotate(0)'); | ||
+ | $(this).css('-moz-transform' , 'rotate(0)'); | ||
+ | }); | ||
+ | |||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | <style type="text/css"> | ||
+ | .foto | ||
+ | { | ||
+ | padding: 2px 3px 6px 3px; | ||
+ | background: #eee; | ||
+ | border: 1px solid #fff; | ||
+ | -moz-box-shadow: 0px 2px 15px #333; | ||
+ | box-shadow: 0px 2px 15px #333; | ||
+ | -webkit-box-shadow: 0px 2px 15px #333; | ||
+ | position: absolute; | ||
+ | margin: 25px 0 0 15px; | ||
+ | text-align: center; | ||
+ | filter: filter: progid:DXImageTransform.Microsoft.MotionBlur(strength=10, direction=310); | ||
+ | |||
+ | z-index: 0; | ||
+ | cursor: pointer; | ||
+ | } | ||
+ | |||
+ | .foto-active | ||
+ | { | ||
+ | background: #fff3b3; | ||
+ | border: 1px solid #fff; | ||
+ | -moz-box-shadow: 0px 2px 15px #666; | ||
+ | box-shadow: 0px 2px 15px #666; | ||
+ | -webkit-box-shadow: 0px 2px 15px #666; | ||
+ | z-index: 2; | ||
+ | cursor: pointer; | ||
+ | cursor: hand; | ||
+ | |||
+ | } | ||
+ | |||
+ | #description | ||
+ | { | ||
+ | padding: 4px 4px 4px 4px; | ||
+ | background: #fff3b3; | ||
+ | border: 1px solid #fff; | ||
+ | -moz-box-shadow: 0px 2px 15px #333; | ||
+ | box-shadow: 0px 2px 15px #333; | ||
+ | -webkit-box-shadow: 0px 2px 15px #333; | ||
+ | position: absolute; | ||
+ | |||
+ | margin: 25px 0 0 15px; | ||
+ | display: inline-block; | ||
+ | width: 400px; | ||
+ | |||
+ | /* Marta: teraz pole opisu powiększa się, gdy zajdzie potrzeba. Kasując min-height można sprawić, | ||
+ | aby wielkość pola zawsze była dostosowana do długości tekstu - też fajnie wygląda. */ | ||
+ | |||
+ | min-height: 210px; | ||
+ | overflow: auto; | ||
+ | |||
+ | } | ||
+ | |||
+ | |||
+ | </style> | ||
+ | |||
+ | |||
+ | |||
+ | <div class="photoframe" style="display:inline-block; height:900px"> | ||
+ | |||
+ | <div class="foto" style="display:inline-block; width:auto" id="JacekB"> | ||
+ | <img class="pic" src="https://static.igem.org/mediawiki/2008/1/1c/Prof.Jacek_Bielecki.gif"/><br>prof. Jacek Bielecki | ||
</div> | </div> | ||
- | <div | + | |
- | + | <div class="foto" style="display:inline-block; width:auto" id="MichalL"> | |
+ | <img class="pic" src="https://static.igem.org/mediawiki/2008/c/c3/Micha%C5%82_L.jpg"/><br>Michał Lower | ||
</div> | </div> | ||
- | <div | + | |
- | + | <div class="foto" style="display:inline-block; width:auto" id="AniaO"> | |
+ | <img class="pic" src="https://static.igem.org/mediawiki/2010/2/24/Ania.jpg"/><br>Ania Olchowik | ||
</div> | </div> | ||
+ | |||
+ | |||
+ | <div class="foto" style="display:inline-block; width:auto" id="RadekS"> | ||
+ | <img class="pic" src="https://static.igem.org/mediawiki/2009/6/69/RadoslawStachowiak.jpg"/><br>Radosław Stachowiak | ||
</div> | </div> | ||
- | |||
- | < | + | <div class="foto" style="display:inline-block; width:auto" id="Ela"> |
+ | <img class="pic" src="https://static.igem.org/mediawiki/2011/e/e8/Ela.jpg"/><br>Ela Jankowska | ||
+ | </div> | ||
- | + | <div class="foto" style="display:inline-block; width:auto" id="Dorota"> | |
- | + | <img class="pic" src="https://static.igem.org/mediawiki/igem.org/b/bc/Kaja.jpg"/><br>Dorota Sabat | |
- | + | </div> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | <div class="foto" style="display:inline-block; width:auto" id="Krzysiek"> |
+ | <img class="pic" src="https://static.igem.org/mediawiki/2011/4/4b/Krzysiek.jpg"/><br>Krzysiek Szczepaniak | ||
+ | </div> | ||
- | + | <div class="foto" style="display:inline-block; width:auto" id="Pawel"> | |
- | + | <img class="pic" src="https://static.igem.org/mediawiki/2011/4/41/Pawe%C5%82.jpg"/><br>Paweł Urbański | |
- | + | </div> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
+ | <div class="foto" style="display:inline-block; width:auto" id="AniaP"> | ||
+ | <img class="pic" src="https://static.igem.org/mediawiki/2010/3/3f/AniaPulawska.jpg"/><br>Ania Puławska | ||
+ | </div> | ||
- | == | + | <div class="foto" style="display:inline-block; width:auto" id="JarekP"> |
- | + | <img class="pic" src="https://static.igem.org/mediawiki/2009/d/dd/Jarek.jpg"/><br>Jarek Pankowski | |
- | + | </div> | |
- | + | ||
+ | <div class="foto" style="display:inline-block; width:auto" id="DominikC"> | ||
+ | <img class="pic" src="https://static.igem.org/mediawiki/2010/9/92/DominikCysewski.jpg"/> | ||
+ | <br>Dominik Cysewski | ||
+ | </div> | ||
+ | <div class="foto" style="display:inline-block; width:auto" id="CherryM"> | ||
+ | <img class="pic" src="https://static.igem.org/mediawiki/2010/2/2d/CherryMoreno.jpg"/><br>Cherry Moreno | ||
+ | </div> | ||
+ | <div class="foto" style="display:inline-block; width:auto" id="KamiilK"> | ||
+ | <img class="pic" src="https://static.igem.org/mediawiki/2009/d/d2/Kamil.jpg"/><br>Kamil Koper | ||
+ | </div> | ||
+ | <div id="description"><strong>This is our team and friends</strong><br><br><strong>Click on the pictures to find out more about us!<br><br>You can drag and drop the photos.<br><br>This page looks best in Firefox.</strong> <br><br><br><br></div> | ||
+ | </div> | ||
- | + | <div style="display:none;" id="MichalL_desc"><strong>Michał Lower</strong><br/> | |
- | + | I come from Warsaw, our capital city :-). I study Biotechnology at University of Warsaw. My M. Sc. thesis in Department of Virology was about new method of rapid determination of type III DNA methyltransferase recognition sequences. Apart from molecular biology I'm passionated with computer programming. | |
- | + | </div> | |
- | + | ||
- | |||
- | + | <div style="display:none;" id="JacekB_desc"> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
+ | <strong>prof. dr hab. Jacek Bielecki</strong><br/> | ||
- | + | <br>Education: MSc, University of Warsaw, 1975 ;PhD, University of Warsaw, 1981 ;Associated professor, Warsaw University, 1995; Professor at University of Warsaw, 1996 ;Vice Dean of Faculty of Biology, 1996 - 1999, and 1999-2002 | |
- | < | + | |
- | + | <br>Research interests: | |
- | + | Molecular mechanisms of virulence of bacteria <i>Listeria monocytogenes</i>, especially the role of a hemolysin, listeriolysin O (LLO). | |
- | + | ||
- | + | ||
- | + | </div> | |
- | + | ||
- | + | <div style="display:none;" id="Pawel_desc"><strong>Paweł Urbański</strong><br/> | |
- | </ | + | |
- | + | I am a student of physics and biotechnology at the College of Interfaculty Individual Studies in Mathematics and Natural Sciences, University of Warsaw. My scientific interests include engineering biological systems, molecular biology and biophysics. Besides the science I’m interested in travelling, running and Ice skating. </div> | |
+ | |||
+ | <div style="display:none;" id="Ela_desc"><strong>Ela Jankowska</strong><br/> | ||
+ | |||
+ | I am an undergraduate Biotechnology student at the Warsaw University. Lately my scientific interests include ancient DNA of the Pleistocene fauna, but I think that almost everything in biology is interesting, which is why I'm here:) Apart from that I love mountains, travelling and singing in a choir. </div> | ||
+ | |||
+ | <div style="display:none;" id="Dorota_desc"><strong>Dorota Sabat</strong><br/> | ||
+ | |||
+ | I come from Warsaw :) I am studying biology and psychology at the College of Interfaculty Individual Studies in Mathematics and Natural Sciences, University of Warsaw. I'm interested in genetics, sociobiology and evolutionary psychology. My hobbies include rock climbing and scuba diving :)</div> | ||
+ | |||
+ | <div style="display:none;" id="Krzysiek_desc"><strong>Krzysiek</strong><br/> | ||
+ | |||
+ | I study Biotechnology at the College of Interfaculty Individual Studies in Mathematics and Natural Sciences. Beside this I'm also interested in chemistry and physics. Outside the lab I am a scout leader, sometimes do some computer programming and I love everything connected with science-fiction and fantasy.</div> | ||
+ | |||
+ | <div style="display:none;" id="AniaO_desc"><strong>Anna Olchowik</strong><br/> | ||
+ | |||
+ | I am a first year phd student at International Institute of Molecular and Cell Biology in Warsaw and I am currently working on bioinformatics of restriction enzymes. I love traveling and ice skating. I enjoy programming. </div> | ||
+ | |||
+ | |||
+ | <div style="display:none;" id="JarekP_desc"><strong>Jarosław Pankowski</strong><br/> | ||
+ | |||
+ | I live near Warsaw and I study Biotechnology at the University of Warsaw. My M. Sc. thesis in Department of Genetic of Bacteria is about plasmid and chromosome encoded ability of marine bacteria to form biofilm. Besides the science I'm interested in fantasy books, metal music and for some time long sword fencing. </div> | ||
+ | |||
+ | |||
+ | |||
+ | <div style="display:none;" id="KamiilK_desc"><strong>Kamil Koper</strong><br/> | ||
+ | |||
+ | I come from a small town in south-east Poland, but I spent most of my life living in Warsaw. I study Biotechnology at the Warsaw University in the Institute of Genetics and Biotechnology. My B. Sc. thesis focused on human mitochondrial DNA polymorphisms and their correlation with the occurrence of specific forms of cancer. If I'm not in the lab or out playing billiards with friends you can usually find me in my workshop, or playing vintage video games. </div> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <div style="display:none;" id="RadekS_desc"><strong>Radosław Stachowiak</strong><br/> | ||
+ | |||
+ | My adventure with biology and biotechnology dates back to 1995 when I became a biotechnology student at University of Warsaw. In the year 2000 I completed my MSc thesis and I guess I couldn’t stop there so I immidiately started PhD studies. Now I’m done with studying and my job is to take care of students and introduce them into science. Still, I like being involved in crazy projects so characteristic of Sudents’ Societies. The more crazy and incredible project the better. I guess this is the case so here I am! </div> | ||
+ | |||
+ | |||
+ | |||
+ | <div style="display:none;" id="AniaP_desc"><strong>Ania Puławska</strong><br/> | ||
+ | I'm Anna I study biotechnology at Warsaw University, precisely in Department of Virology. I am sure that this is exactly where I should be:) Probably I'm the happiest student in Warsaw:D | ||
+ | <br>Apart from my duties, I have many hobbies. I love traveling, drawing (check the home page graphic), snowboarding in winter or sailing in spring:) What more can I say? I'm an optimist^^ | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | <div style="display:none;" id="DominikC_desc"><strong>Dominik Cysewski</strong><br/> | ||
+ | I come from Wroclaw, most charming city of Poland;-) I'm a graduate | ||
+ | student at the University of Warsaw (Institute of Genetics and | ||
+ | Biotechnology). Now I'm working on cross-linking of protein complexes | ||
+ | and mapping them. Science is fascinating of course... But my hobby is | ||
+ | mountaineering. | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | <div style="display:none;" id="CherryM_desc"><strong>Cherry Moreno</strong> | ||
+ | studies medical biotechnology in the Department of Immunology at Warsaw Uniwersity, where she works with LPS, natural regulatory T cells and their Tool-like receptors. She sings in a Russian Orthodox Choir, her father comes from Panama and she hates itchy clothes labels. She loves dancing, watching nature and flow cytometry!!! | ||
+ | </div> | ||
- | |||
- | |||
+ | </html> | ||
- | + | {{TemplateBottom}} |
Latest revision as of 18:08, 17 September 2011
prof. Jacek Bielecki
Michał Lower
Ania Olchowik
Radosław Stachowiak
Ela Jankowska
Dorota Sabat
Krzysiek Szczepaniak
Paweł Urbański
Ania Puławska
Jarek Pankowski
Dominik Cysewski
Cherry Moreno
Kamil Koper
This is our team and friends
Click on the pictures to find out more about us!
You can drag and drop the photos.
This page looks best in Firefox.
Click on the pictures to find out more about us!
You can drag and drop the photos.
This page looks best in Firefox.