Team:Baskent-Meds

From 2012.igem.org

(Difference between revisions)
 
(42 intermediate revisions not shown)
Line 1: Line 1:
<html>
<html>
<head>
<head>
-
   
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-
<title>Baskent-Meds IGEMwiki</title>
+
<title>Smooth Animated jQuery Menu</title>
-
<!--menu bar script-->
+
<link rel="stylesheet" href="http://buildinternet.com/live/smoothmenu/animated-menu.css"/>
-
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
+
<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.js" type="text/javascript"></script>
-
    <script type="text/javascript">
+
<script src="http://buildinternet.com/live/smoothmenu/js/jquery.easing.1.3.js" type="text/javascript"></script>
-
        $(document).ready(function(){
+
<!--
-
 
+
<script>
-
$("ul.subnav").parent().append("<span></span>"); //Only shows drop down trigger when js is enabled - Adds empty span tag after ul.subnav
+
$(document).ready(function(){
-
$("ul.topnav li span").click(function() { //When trigger is clicked...
+
//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
-
+
-
//Following events are applied to the subnav itself (moving subnav up and down)
+
//Remove outline from links
-
$(this).parent().find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click
+
$("a").click(function(){
-
 
+
$(this).blur();
-
$(this).parent().hover(function() {
+
});
-
}, function(){
+
-
$(this).parent().find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
+
//When mouse rolls over
-
});
+
$("li").mouseover(function(){
-
 
+
$(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})
-
//Following events are applied to the trigger (Hover events for the trigger)
+
-
}).hover(function() {  
+
-
$(this).addClass("subhover"); //On hover over, add class "subhover"
+
-
}, function(){ //On Hover Out
+
-
$(this).removeClass("subhover"); //On hover out, remove class "subhover"
+
});
});
-
 
+
 +
//When mouse is removed
 +
$("li").mouseout(function(){
 +
$(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
 +
});
 +
});
});
-
/*menu bar script*/
 
-
    </script>
 
-
 
-
<style>
+
-->
-
/*menubar css*/
+
</script>
 +
<link rel="stylesheet" type="text/css" media="screen" href="http://www.bustack.com/wiki/css/coda-slider.css">
 +
<link rel="stylesheet" href="http://www.bustack.com/wiki/nivo/themes/default/default.css" type="text/css" media="screen" />
 +
<link rel="stylesheet" href="http://www.bustack.com/wiki/nivo/nivo-slider.css" type="text/css" media="screen" />
 +
<link rel="stylesheet" href="http://www.bustack.com/wiki/nivo/demo/style.css" type="text/css" media="screen" />
-
body
+
    </script>
-
{
+
<script language="JavaScript" type="text/JavaScript">
-
margin-left:20px;
+
-
margin-right:20px;
+
-
padding:0;
+
-
font:10px normal Arial, Helvetica, sans-serif;
+
-
background: #fff url("http://mail.baskent.edu.tr/mail/igem/scriptler/menubar/body_bg.gif") repeat-x;
+
-
background-color: #FFFFFF;
+
-
}
+
-
ul.topnav
+
-
{
+
-
padding:0 20px;
+
-
margin:0;
+
-
float:left;
+
-
width:990px;
+
-
background:#222;
+
-
font-size:1.2em;
+
-
background:url("https://static.igem.org/mediawiki/2012/1/1b/Topnav_bg.gif") repeat-x;
+
-
}
+
-
ul.topnav li
+
-
{
+
-
float:left;
+
-
list-style-type:none;
+
-
margin:0;
+
-
padding:0 15px 0 0;
+
-
position:relative; /*--Declare X and Y axis base--*/
+
-
}
+
-
ul.topnav li a
+
-
{
+
-
padding:10px 5px;
+
-
color:#fff;
+
-
display:block;
+
-
text-decoration:none;
+
-
float:left;
+
-
}
+
-
ul.topnav li a:hover
+
-
{
+
-
background:url("https://static.igem.org/mediawiki/2012/f/f5/Topnav_hover.gif") no-repeat center top;
+
-
}
+
-
ul.topnav li span
+
-
{
+
-
/*--Drop down trigger styles--*/
+
-
width:17px;
+
-
height:35px;
+
-
float:left;
+
-
background:url("https://static.igem.org/mediawiki/2012/4/45/Subnav_btn.gif") no-repeat center top;
+
-
}
+
-
ul.topnav li span.subhover
+
-
{
+
-
/*--Hover effect for trigger--*/
+
-
background-position:
+
-
center bottom;
+
-
cursor: pointer;
+
-
}
+
-
ul.topnav li ul.subnav
+
-
{
+
-
list-style:none;
+
-
position:absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
+
-
left:0;
+
-
top:35px;
+
-
background:#333;
+
-
margin:0;
+
-
padding:0;
+
-
display:none;
+
-
float:left;
+
-
width:170px;
+
-
-moz-border-radius-bottomleft:5px;
+
-
-moz-border-radius-bottomright:5px;
+
-
-webkit-border-bottom-left-radius:5px;
+
-
-webkit-border-bottom-right-radius:5px;
+
-
border:1px solid #111;
+
-
}
+
-
ul.topnav li ul.subnav li
+
-
{
+
-
margin:0;
+
-
padding:0;
+
-
border-top:1px solid #252525; /*--Creates bevel effect--*/
+
-
border-bottom:1px solid #444; /*--Creates bevel effect--*/
+
-
clear:both;
+
-
width:170px;
+
-
}
+
-
html ul.topnav li ul.subnav li a
+
-
{
+
-
float:left;
+
-
width:145px;
+
-
background:#333 url("https://static.igem.org/mediawiki/2012/4/4b/Dropdown_linkbg.gif") no-repeat 10px center;
+
-
padding-left:20px;
+
-
}
+
-
html ul.topnav li ul.subnav li a:hover
+
-
{
+
-
/*--Hover effect for subnav links--*/
+
-
background:#222 url("https://static.igem.org/mediawiki/2012/4/4b/Dropdown_linkbg.gif") no-repeat 10px center;
+
-
}
+
-
/*menu bar css*/
+
-
.style2 {font-family: "Gill Sans MT", Helvetica}
+
-
.style8 {font-size: 24px}
+
-
.style9 {font-size: 18px; }
+
-
<!-- css ayar çekmece
+
-
#siteSub {
+
-
display:none;
+
-
}
+
-
#search-controls {
+
function MM_reloadPage(init) { //reloads the window if Nav4 resized
-
display:none;
+
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
 +
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
 +
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
}
 +
MM_reloadPage(true);
-
.firstHeading {
+
</script>
-
display:none;
+
<script type="text/javascript" src="http://www.bustack.com/wiki/nivo/demo/scripts/jquery-1.7.1.min.js"></script>
 +
    <script type="text/javascript" src="http://www.bustack.com/wiki/nivo/jquery.nivo.slider.js"></script>
 +
 +
    <style type="text/css">
 +
<!--
 +
.style12 {
 +
color: #000000;
 +
font-size: 24px;
}
}
 +
-->
 +
    </style>
 +
</head> 
 +
<style type="text/css">
 +
 +
h1{margin:100px;}#top-section {height: 20px;border-left: none;border-right: none;}
 +
#siteSub {display:none;}
 +
#search-controls {display:none;}
 +
.firstHeading {display:none;}
 +
#search-controls {margin-top:0px;}
 +
#footer-box {display:none;}
 +
#contentSub {display:none;}
 +
#siteSub {display:none;}
 +
#search-controls {display:none;}
 +
.firstHeading {display:none;}
 +
#search-controls {margin-top:0px;}
 +
#footer-box {display:none;}
 +
#top-section {height: 20px;border-left: none;border-right: none;}
 +
.left-menu {margin-top:-12px;
 +
}.right-menu {margin-top:-12px;}
 +
.left-menu ul {border: none;}
 +
#menubar li a { color:#8C8984;        background-color:transparent;}
 +
#menubar ul { color:transparent;        background-color:transparent;}
 +
#menubar { background-color:transparent; font-size:85%; line-height:1em; position:absolute; top:10px; white-space:nowrap; width:50%; z-index:5; height:20px; overflow:hidden}
 +
.left-menu { left:0; padding-left: 0px;}
 +
.right-menu  { right:0;      }
 +
.firstHeading { display:none; }
 +
#menubar{color: #transparent;}
 +
#menubar.right-menu {margin-top:-12px;}
 +
.right-menu ul {border: none;}
 +
#menubar{top:15px;z-index:25;}
 +
#menubar { background-color:f5f6f7; font-size:85%; line-height:1em; position:absolute; top:10px; white-space:nowrap; width:50%; z-index:5; height:20px; overflow:hidden}img[src*="/wiki/skins/common/images/wiki.png"]{    width:0;    height:60px;    padding-right:975px;    background:#transparent;}
 +
#p-logo a{color:#transparent;}
 +
#catlinks { height: 0px; overflow: hidden; display: none; border:  }
-
#search-controls {
+
body{
-
margin-top:0px;
+
font-family:"Gill Sans MT", Helvetica;
-
}
+
font-size: 12px;
 +
background:#F3F3F3;
 +
color: #FFFFFF;
 +
background-color: #FFFFFF;
 +
 +
 
 +
ul{
 +
    margin:0; 
 +
    padding:0; 
 +
 +
 
 +
li{ 
 +
    width:110px; 
 +
    height:40px; 
 +
    float:left; 
 +
    color:#191919; 
 +
    text-align:center; 
 +
    overflow:hidden; 
 +
 +
 
 +
a{
 +
color:#FFF;
 +
text-decoration:none;
 +
font-family: Gill Sans MT, Helvetica;
 +
font-size: 18px;
 +
 +
 
 +
p{ 
 +
    padding:0px 5px;
 +
}
 +
 
 +
-
#footer-box {
+
/*Menu Color Classes*/ 
-
display:none;
+
-
}
+
-
#contentSub {
+
.green{
-
display:none;
+
background:#6AA63B;
 +
color: #FFFFFF;
 +
font-size: 18px;
 +
 +
.yellow{
 +
background:#FBC700;
 +
color: #FFFFFF;
 +
font-size: 18px;
 +
 +
.red{
 +
background:#D52100;
 +
color: #FFFFFF;
 +
font-size: 18px;
 +
 +
.purple{
 +
background:#5122B4;
 +
color: #FFFFFF;
 +
font-size: 18px;
 +
 +
.blue{
 +
background:#0292C0;
 +
color: #FFFFFF;
 +
font-size: 18px;
 +
}
 +
.pink{
 +
background: #000000;
 +
color: #FFFFFF;
 +
font-size: 18px;
 +
}
 +
    a:link {
 +
text-decoration: none;
}
}
-
 
+
a:visited {
-
#siteSub {
+
text-decoration: none;
-
display:none;
+
color: #FFFFFF;
}
}
-
 
+
a:hover {
-
#search-controls {
+
text-decoration: none;
-
display:none;
+
color: #FFFFFF;
}
}
-
 
+
a:active {
-
.firstHeading {
+
text-decoration: none;
-
display:none;
+
color: #FFFFFF;
}
}
-
 
+
height: 74px;
-
#footer-box {
+
width: 74px;
-
display:none;
+
}
}
-
 
+
    .style13 {
-
.left-menu ul {
+
color: #000000;
-
border: none;
+
font-size: 18px;
}
}
-
 
+
    .style14 {font-size: 24px}
-
.right-menu ul {
+
    .style15 {font-size: 36px}
-
border: none;
+
    </style>
-
}
+
</head>
-
-->
+
<body>
-
</style>
+
    <div id="Layer2" style="position:absolute; left:-63px; top:-8px; width:2000px; height:3000px; z-index:2">
-
 
+
   
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>
+
-
<body>
+
  <div id="Layer3" style="position:absolute; left:-63px; top:-8px; width:1230px; height:1230px; z-index:2">
-
 
+
   
-
<div id="ana" style="position:absolute; left:-25px; top:-100px; width:1000px; height:1734px; z-index:1; background-color: #FFFFFF; layer-background-color: #FFFFFF; border: 1px none #000000;">
+
        <div class="slider-wrapper theme-default">
-
<div id="menubar" style="position:absolute; left:25px; top:16px; width:1000px; height:200px; z-index:1">
+
            <div id="slider" class="nivoSlider">
-
 
+
               
-
 
+
<a href="/Team:Baskent-Meds/Project"><img src="http://www.bustack.com/wiki/thumb/thumb.JPG" alt="ssa" title="#risorc"/>
-
<!--menu bar basladi -->
+
-
 
+
<a href="/Team:Baskent-Meds/Notebook"><img src="http://www.bustack.com/wiki/thumb/thumb3.JPG" alt="asd" title="#buk"/>
-
<ul class="topnav">
+
-
<li><a href="2012.igem.org/Team:Baskent-Meds" title="BaskentMeds main page">Home</a></li>
+
<a href="/Team:Baskent-Meds/Team">
-
 
+
<img src="http://www.bustack.com/wiki/thumb/thumb4.JPG" alt="mearba" title="#mit"/>
-
 
+
-
<li>
+
<a href="/Team:Baskent-Meds/Gallery"><img src="http://www.bustack.com/wiki/thumb/thumbson.JPG" alt="dasda" border="0" title="#fan"/></a>
-
<a href="" title="">Project</a>
+
<img src="http://www.bustack.com/wiki/fancybox/IMG_0397.JPG" />
-
</li>
+
-
<li><a href="2012.igem.org/Team:Baskent-Meds/Notebook" title="Our Beloved Notebook!">Notebook</a></li>
+
               
-
<li><a href="" title="Still Working on this">Results</a></li>
+
            </div>
-
 
+
            <div id="risorc" class="nivo-html-caption">
-
<li><a href="" title="">Gallery</a></li>
+
                <strong>our</strong> research's pillars, <em> killing the legionella</em><a href="/Team:Baskent-Meds/Project">a link</a>.
-
 
+
            </div>
-
<li>
+
<div id="buk" class="nivo-html-caption">
-
<a href="2012.igem.org/Team:Baskent-Meds/Team" title="Shall we meet?">Team</a>
+
                <strong>Follows us </strong> in the <em>lab</em>, we are telling what we did <a href="/Team:Baskent-Meds/Notebook">a link</a>.
-
 
+
            </div>
-
<ul class="subnav">
+
<div id="mit" class="nivo-html-caption">
-
<li><a href="2012.igem.org/Team:Baskent-Meds/Instructors" title="Our ">Instructors</a></li>
+
                <strong>have</strong> we <em> met</em>? <a href="/Team:Baskent-Meds/Team">a link</a>.
-
<li><a href="2012.igem.org/Team:Baskent-Meds/Advisor" title="AdVisor">Advisor</a></li>
+
            </div>
-
<li><a href="2012.igem.org/Team:Baskent-Meds/Students" title="Us">Student Members</a></li>
+
<div id="fan" class="nivo-html-caption">
-
 
+
                <strong>also</strong> we have<em>fun!</em> with our competitors <a href="/Team:Baskent-Meds/Gallery">a link</a>.
-
</ul>
+
            </div>
-
 
+
        </div>
-
</li>
+
-
 
+
-
</ul>
+
-
<br><br><br>
+
-
<!-- menubar bitti-->
+
-
 
+
-
 
+
</div>
</div>
 +
    </div>
 +
      <div id="Layer1" class="style12" style="position:absolute; left:1px; top:821px; width:1103px; height:636px; z-index:3">
 +
        <script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
 +
<script>
 +
new TWTR.Widget({
 +
  version: 2,
 +
  type: 'profile',
 +
  rpp: 5,
 +
  interval: 30000,
 +
  width: 250,
 +
  height: 300,
 +
  theme: {
 +
    shell: {
 +
      background: '#ffffff',
 +
      color: '#ff4848'
 +
    },
 +
    tweets: {
 +
      background: '#ffe2e2',
 +
      color: '#310000',
 +
      links: '#ae0000'
 +
    }
 +
  },
 +
  features: {
 +
    scrollbar: false,
 +
    loop: false,
 +
    live: false,
 +
    behavior: 'all'
 +
  }
 +
}).render().setUser('iGEM_Baskent_MD').start();
 +
</script>
-
 
+
      </div>
-
 
+
      <div id="Layer4" class="style13" style="position:absolute; left:261px; top:821px; width:843px; height:634px; z-index:4">
-
 
+
        <p class="style14"><span class="style15"><br>Greetings From Turkey</span><br>
-
 
+
          </p>
-
<br />
+
        <p class="style14">We have raki, sish kebap and also the best Legionella Pneumophilia bounty hunter! </p>
-
<br />
+
        <p class="style14"><br>
-
<div id="la'book" class="style2" style="position:absolute; left:25px; top:165px; width:1000px; height:274px; z-index:1; overflow: visible;">
+
          Actually, i pretty hated media wiki. however i am going to design an other page about why shoul we use wiki and why we shouldn't. Sometimes i hug pillows and asking while crying &quot;why mediawiki why?&quot;. <br>
-
  <p class="style8">Brainstorming Part </p>
+
          <br>
-
  <p class="style9"> December 15th 2011, Thursday </p>
+
          it's 5 a.m. and i am still coding...<br>
-
  <p>In our very first meeting, we were excited as hell. Almost none of us know how to work in the lab we didn&rsquo;t know the lab rules. We began to learn about practicing in lab and lab rules. We are not so great on the theoric basis so , we&rsquo;re gonna have to work hard and learn all about molecular genetics, bacteria and iGEM. </p>
+
          <br>
-
  <p class="style9">22.12 .11 December 22nd 2011, Thursday</p>
+
          Sincerely a Med Student.<br>
-
  <p>We realized that it&rsquo;s a long road to walk. We are learning new stuff almost every day about bioengineering and it&rsquo;s exciting. We began our brainstorming meetings. Every member of our team thinks about what we can do to save the world every week! J After a week, we have lots of new ideas and we spend the rest of our time to search about if it&rsquo;s possible to carry them to the benchtop and then to real life! </p>
+
          <br>
-
  <p class="style9">December 29th 2011, Sunday </p>
+
          This part left blank for further, better, stronger &quot;greetings texts&quot;</p>
-
  <p>We were discussing about &ldquo;detecting methane gas in the air&rdquo; and we were so hopeful about it but while we were searching online we saw that another Turkish team already performed it for last year&rsquo;s iGEM competition. We were so frustrated that we felt that we would never gonna find an original, bright idea.Anyway, it looks like our brainstorming meetings will be beginning again! </p>
+
      </div>
-
  <p class="style9">05.01.12 January 5th 2011, </p>
+
      <script type="text/javascript">
-
  <p>Happy new year! Here is some exciting and impossible ideas from our last meeting: </p>
+
   
-
  <blockquote>
+
$(window).load(function() {
-
    <p>- Human epithelial cells making photosynthesis resulting in green men!!! (So weard) </p>
+
        $('#slider').nivoSlider();
-
    <p> - Bacteria sensing an approaching subject to be used in cars as a park sensor </p>
+
    });
-
    <p> - Dancing bacteria- we thought it as it is without a utility </p>
+
    </script>
-
    <p> - Bacteria sensing earthquake with a gene sensing pressure changes </p>
+
</body>
-
  </blockquote>
+
-
  <p><em> &nbsp;</em>Some of them just for fun of course but we liked the other ones and we&rsquo;re gonna spend the rest of the week about making a search for them. </p>
+
-
  <p class="style9">12.01.12 </p>
+
-
  <p>It turns out it&rsquo;s really not that possible to create those last weeks&rsquo; ideas and some of them had already had been done by other iGEM teams. So we didn&rsquo;t stop our brainstorming and come up with even crazier ideas to our meeting! </p>
+
-
  <blockquote>
+
-
    <p><em> &nbsp;</em>- Bacteria detecting the purity of gold and silver </p>
+
-
    <p> - Bacteria changing color with daytime accorsding to the light spectrum from the sun, used as a sun clock </p>
+
-
    <p> - Bacteria produced to change the irresistable smell of waste water with a rose flavour ! </p>
+
-
  </blockquote>
+
-
  <p class="style9">19.01.12 </p>
+
-
  <p> We spent the week by thinking about last week&rsquo;s ideas and trying to find new ones. Two people came with the same idea to this week&rsquo;s meeting; lightning moment! We decided to work with detection and destruction of legionella pnomophilia, by using its quorum sensing gene parts! That legionella disease is still killing so many people every year and it&rsquo;s especially common in our country. We couldn&rsquo;t find a an IGEM team that worked with it before but we&rsquo;re gonna look around more and more. Of course we wouldn&rsquo;t wanna do the same project . </p>
+
-
  <p class="style9">24.01.12 </p>
+
-
  <p>So let&rsquo;s begin to work in our lovely lab, finally! We are officially gonna study about creating an E. coli that&rsquo;s gonna find and kill legionella pnomophilia in every place it could hide. We can&rsquo;t wait to get to work and do some real experiments! </p>
+
-
  <p class="style9">30.01.12 </p>
+
-
  <p> Today, in our first real lab experience we created competent cells that can take our plasmids by using JM109, DH5&alpha;, XL-1Blue E. coli strains. We used calcium chloride (CaCl2) treatment while forming it. </p>
+
-
  <p> It&rsquo;s just like building a home for our plasmids to live in happily ever after. By the way, we need to start thinking about our application to the big competition, we have big exams every month as med students, we can even forget the last date of sign in to iGEM! We need to accomplish every mission we have, and we need to do it well. </p>
+
-
  <p class="style9">09.02.12 </p>
+
-
  <p>This week we began with transformation experiments. We don&rsquo;t know how to do them, we are not experienced and we need to learn a lot. These first transformation experiments are very informative for every member of our group. We started with E. Coli JM109 strain. We used pUCBM20 (pNT-1) (includes <em>lqs </em>locus), pMMB207C-RBS (pTS-2) (expression vector which includes <em>lqsA</em> gene), pUSEamp(+) (includes <em>luc </em>gene), and pGEM-3Z (control) for transformation. It was very fun to do it as a group, team spirit is rising! Heat shock transformation sounds very kicka**. Our instructor told us that we may have to do it until transformation became successful. </p>
+
-
  <p class="style9">16.02.12 </p>
+
-
  <p>YAY! pGEM-3Z and pUSEamp(+) was successfully transformated to our E. coli strains. It took a month to have successfully transformated cells. But it turns out our plasmids that include lqs gene locus are not very likely to be transformed. </p>
+
-
  <p>We learned so many things. We can prepare LB medium, and our component cells stays alive thanks to us, and we transform plasmids into them! What a success, even for now! </p>
+
-
  <p class="style9">23.02.12 </p>
+
-
  <p>We came back from our semester break and we are now officially an iGEM team. We paid our registration fee. There are so much to do, like preparing a wiki page for our team, It&rsquo;s so important and we checked out some old wikis, we should create a better one, actually why can&rsquo;t we create the best wiki page ever?</p>
+
-
  <p class="style9"> 01.03 .12 </p>
+
-
  <p> We now continue to do experiments. Preparing compotent cells, plasmid transformation, pcr, plasmid isolation&hellip; We&rsquo;re going pretty well. Rise and shine, Baskent_Meds! (It&rsquo;s our official team name. We loved it.) </p>
+
-
  <p class="style9">15.06.12 </p>
+
-
  <p>Hard and stressful times. This year&rsquo;s last comitee exam was today and now we&rsquo;re gonna have our final exam, if we couldn&rsquo;t get enough notes to pass, we&rsquo;re gonna have to repeat this year. We have to study all the time for two weeks because if we couldn&rsquo;t finish this year our project will crash down L that was our deal with our mentors for starting this in the beginning. See you in two weeks little lovely bacteria families. </p>
+
-
  <p class="style9">04.07.12 </p>
+
-
  <p>We had our final exam and started to work in our lab while waiting our exam results. Excitiment still goes on but we really missed that place. There are so much to do so we made a &ldquo;to do list&rdquo; and we&rsquo;re gonna finish everything we need to do by the end of july. Yeah we will! Everything goes on according to plan. </p>
+
-
</div>
+
-
</div>
+
-
</body>
+
</html>
</html>

Latest revision as of 02:56, 1 August 2012

Smooth Animated jQuery Menu

our research's pillars, killing the legionellaa link.
Follows us in the lab, we are telling what we did a link.
have we met? a link.
also we havefun! with our competitors a link.


Greetings From Turkey

We have raki, sish kebap and also the best Legionella Pneumophilia bounty hunter!


Actually, i pretty hated media wiki. however i am going to design an other page about why shoul we use wiki and why we shouldn't. Sometimes i hug pillows and asking while crying "why mediawiki why?".

it's 5 a.m. and i am still coding...

Sincerely a Med Student.

This part left blank for further, better, stronger "greetings texts"