Template:TU-header3

From 2011.igem.org

(Difference between revisions)
 
(292 intermediate revisions not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
 +
 +
<!--We would like to thank Brown Stanford 2011 for the inspiration on the usage of the menu. Their way of implementation was used for the construction of our own menu. We would like to thank http://tympanus.net/codrops/2010/07/16/slide-down-box-menu/ for the necessary code. -->
 +
 +
<html>
<html>
<head>
<head>
 +
<script type="text/javascript">
 +
/*
 +
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 +
*
 +
* Uses the built in easing capabilities added In jQuery 1.1
 +
* to offer multiple easing options
 +
*
 +
* TERMS OF USE - jQuery Easing
 +
*
 +
* Open source under the BSD License.
 +
*
 +
* Copyright c 2008 George McGinley Smith
 +
* All rights reserved.
 +
*
 +
* Redistribution and use in source and binary forms, with or without modification,
 +
* are permitted provided that the following conditions are met:
 +
*
 +
* Redistributions of source code must retain the above copyright notice, this list of
 +
* conditions and the following disclaimer.
 +
* Redistributions in binary form must reproduce the above copyright notice, this list
 +
* of conditions and the following disclaimer in the documentation and/or other materials
 +
* provided with the distribution.
 +
*
 +
* Neither the name of the author nor the names of contributors may be used to endorse
 +
* or promote products derived from this software without specific prior written permission.
 +
*
 +
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
 +
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 +
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 +
*  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 +
*  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 +
*  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 +
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 +
*  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 +
* OF THE POSSIBILITY OF SUCH DAMAGE.
 +
*
 +
*/
 +
 +
// t: current time, b: begInnIng value, c: change In value, d: duration
 +
jQuery.easing['jswing'] = jQuery.easing['swing'];
 +
 +
jQuery.extend( jQuery.easing,
 +
{
 +
def: 'easeOutQuad',
 +
swing: function (x, t, b, c, d) {
 +
//alert(jQuery.easing.default);
 +
return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
 +
},
 +
easeInQuad: function (x, t, b, c, d) {
 +
return c*(t/=d)*t + b;
 +
},
 +
easeOutQuad: function (x, t, b, c, d) {
 +
return -c *(t/=d)*(t-2) + b;
 +
},
 +
easeInOutQuad: function (x, t, b, c, d) {
 +
if ((t/=d/2) < 1) return c/2*t*t + b;
 +
return -c/2 * ((--t)*(t-2) - 1) + b;
 +
},
 +
easeInCubic: function (x, t, b, c, d) {
 +
return c*(t/=d)*t*t + b;
 +
},
 +
easeOutCubic: function (x, t, b, c, d) {
 +
return c*((t=t/d-1)*t*t + 1) + b;
 +
},
 +
easeInOutCubic: function (x, t, b, c, d) {
 +
if ((t/=d/2) < 1) return c/2*t*t*t + b;
 +
return c/2*((t-=2)*t*t + 2) + b;
 +
},
 +
easeInQuart: function (x, t, b, c, d) {
 +
return c*(t/=d)*t*t*t + b;
 +
},
 +
easeOutQuart: function (x, t, b, c, d) {
 +
return -c * ((t=t/d-1)*t*t*t - 1) + b;
 +
},
 +
easeInOutQuart: function (x, t, b, c, d) {
 +
if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
 +
return -c/2 * ((t-=2)*t*t*t - 2) + b;
 +
},
 +
easeInQuint: function (x, t, b, c, d) {
 +
return c*(t/=d)*t*t*t*t + b;
 +
},
 +
easeOutQuint: function (x, t, b, c, d) {
 +
return c*((t=t/d-1)*t*t*t*t + 1) + b;
 +
},
 +
easeInOutQuint: function (x, t, b, c, d) {
 +
if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
 +
return c/2*((t-=2)*t*t*t*t + 2) + b;
 +
},
 +
easeInSine: function (x, t, b, c, d) {
 +
return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
 +
},
 +
easeOutSine: function (x, t, b, c, d) {
 +
return c * Math.sin(t/d * (Math.PI/2)) + b;
 +
},
 +
easeInOutSine: function (x, t, b, c, d) {
 +
return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
 +
},
 +
easeInExpo: function (x, t, b, c, d) {
 +
return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
 +
},
 +
easeOutExpo: function (x, t, b, c, d) {
 +
return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
 +
},
 +
easeInOutExpo: function (x, t, b, c, d) {
 +
if (t==0) return b;
 +
if (t==d) return b+c;
 +
if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
 +
return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
 +
},
 +
easeInCirc: function (x, t, b, c, d) {
 +
return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
 +
},
 +
easeOutCirc: function (x, t, b, c, d) {
 +
return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
 +
},
 +
easeInOutCirc: function (x, t, b, c, d) {
 +
if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
 +
return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
 +
},
 +
easeInElastic: function (x, t, b, c, d) {
 +
var s=1.70158;var p=0;var a=c;
 +
if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
 +
if (a < Math.abs(c)) { a=c; var s=p/4; }
 +
else var s = p/(2*Math.PI) * Math.asin (c/a);
 +
return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
 +
},
 +
easeOutElastic: function (x, t, b, c, d) {
 +
var s=1.70158;var p=0;var a=c;
 +
if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
 +
if (a < Math.abs(c)) { a=c; var s=p/4; }
 +
else var s = p/(2*Math.PI) * Math.asin (c/a);
 +
return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
 +
},
 +
easeInOutElastic: function (x, t, b, c, d) {
 +
var s=1.70158;var p=0;var a=c;
 +
if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
 +
if (a < Math.abs(c)) { a=c; var s=p/4; }
 +
else var s = p/(2*Math.PI) * Math.asin (c/a);
 +
if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
 +
return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
 +
},
 +
easeInBack: function (x, t, b, c, d, s) {
 +
if (s == undefined) s = 1.70158;
 +
return c*(t/=d)*t*((s+1)*t - s) + b;
 +
},
 +
easeOutBack: function (x, t, b, c, d, s) {
 +
if (s == undefined) s = 1.70158;
 +
return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
 +
},
 +
easeInOutBack: function (x, t, b, c, d, s) {
 +
if (s == undefined) s = 1.70158;
 +
if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
 +
return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
 +
},
 +
easeInBounce: function (x, t, b, c, d) {
 +
return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
 +
},
 +
easeOutBounce: function (x, t, b, c, d) {
 +
if ((t/=d) < (1/2.75)) {
 +
return c*(7.5625*t*t) + b;
 +
} else if (t < (2/2.75)) {
 +
return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
 +
} else if (t < (2.5/2.75)) {
 +
return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
 +
} else {
 +
return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
 +
}
 +
},
 +
easeInOutBounce: function (x, t, b, c, d) {
 +
if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
 +
return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
 +
}
 +
});
 +
 +
/*
 +
*
 +
* TERMS OF USE - EASING EQUATIONS
 +
*
 +
* Open source under the BSD License.
 +
*
 +
* Copyright c 2001 Robert Penner
 +
* All rights reserved.
 +
*
 +
* Redistribution and use in source and binary forms, with or without modification,
 +
* are permitted provided that the following conditions are met:
 +
*
 +
* Redistributions of source code must retain the above copyright notice, this list of
 +
* conditions and the following disclaimer.
 +
* Redistributions in binary form must reproduce the above copyright notice, this list
 +
* of conditions and the following disclaimer in the documentation and/or other materials
 +
* provided with the distribution.
 +
*
 +
* Neither the name of the author nor the names of contributors may be used to endorse
 +
* or promote products derived from this software without specific prior written permission.
 +
*
 +
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
 +
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 +
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 +
*  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 +
*  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 +
*  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 +
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 +
*  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 +
* OF THE POSSIBILITY OF SUCH DAMAGE.
 +
*
 +
*/
 +
</script>
-
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
 
         <script type="text/javascript">
         <script type="text/javascript">
$(function() {
$(function() {
$('#sdt_menu > li').bind('mouseenter',function(){
$('#sdt_menu > li').bind('mouseenter',function(){
-
var $elem = $(this);
+
var $elem = $(this);
-
$elem.find('img')
+
$elem.find('img')
-
.stop(true)
+
.stop(true)
-
.animate({
+
.animate({
-
'width':'170px',
+
'width':'124px',
-
'height':'170px',
+
'height':'124px',
-
'left':'0px'
+
'left':'0px'
-
},400,'easeOutBack')
+
},0,'easeOutBack')
-
.andSelf()
+
.andSelf()
-
.find('.sdt_wrap')
+
.find('.sdt_wrap')
-
.stop(true)
+
    .stop(true)
-
.animate({'top':'140px'},500,'easeOutBack')
+
.animate({'top':'94px'},400,'easeOutBack')
-
.andSelf()
+
.andSelf()
-
.find('.sdt_active')
+
.find('.sdt_active')
-
.stop(true)
+
    .stop(true)
-
.animate({'height':'170px'},300,function(){
+
.animate({'height':'128px'},300,function(){
-
var $sub_menu = $elem.find('.sdt_box');
+
var $sub_menu = $elem.find('.sdt_box');
-
if($sub_menu.length){
+
if($sub_menu.length){
-
var left = '170px';
+
var left = '124px';
-
if($elem.parent().children().length == $elem.index()+1)
+
if($elem.parent().children().length == $elem.index()+1)
-
left = '-170px';
+
left = '-124px';
-
$sub_menu.show().animate({'left':left},200);
+
$sub_menu.show().animate({'left':left},300);
-
}
+
}
-
});
+
});
-
}).bind('mouseleave',function(){
+
}).bind('mouseleave',function(){
-
var $elem = $(this);
+
var $elem = $(this);
-
var $sub_menu = $elem.find('.sdt_box');
+
var $sub_menu = $elem.find('.sdt_box');
-
if($sub_menu.length)
+
if($sub_menu.length)
-
$sub_menu.hide().css('left','0px');
+
$sub_menu.hide().css('left','0px');
-
 
+
-
$elem.find('.sdt_active')
+
$elem.find('.sdt_active')
-
.stop(true)
+
.stop(true)
-
.animate({'height':'0px'},300)
+
.animate({'height':'0px'},400)
-
.andSelf().find('img')
+
.andSelf().find('img')
-
.stop(true)
+
.stop(true)
-
.animate({
+
.animate({
-
'width':'0px',
+
'width':'0px',
-
'height':'0px',
+
'height':'0px',
-
'left':'85px'},400)
+
'left':'62px'},400)
-
.andSelf()
+
.andSelf()
-
.find('.sdt_wrap')
+
.find('.sdt_wrap')
-
.stop(true)
+
.stop(true)
-
.animate({'top':'25px'},500);
+
.animate({'top':'25px'},500);
-
});
+
});
-
});
+
            });
 +
        </script>
</script>
</script>
<link rel="stylesheet" type="text/css" href="https://2011.igem.org/Team:TU-Delft/Testcss?action=raw&ctype=text/css" />
<link rel="stylesheet" type="text/css" href="https://2011.igem.org/Team:TU-Delft/Testcss?action=raw&ctype=text/css" />
</head>
</head>
<body>
<body>
-
<ul id="sdt_menu" class="sdt_menu">
+
 
-
<li>
+
 
-
<a href="/Team:Brown-Stanford">
+
<div id="TU-header1">
-
<!--<img src="images/2.jpg" alt=""/>-->
+
 
-
<span class="sdt_active"></span>
+
<img src="http://upload.wikimedia.org/wikipedia/en/d/d6/IGEM_official_logo.png" alt="TUDelft Logo2" height="52" align="LEFT" style="position:absolute; margin:20px 0px 0px 0px; " >
-
<span class="sdt_wrap">
+
 
-
<span class="sdt_link">Brown-Stanford</span>
+
<img src="http://www.osli.ca/uploads/images/base/logo.png" alt="TUDelft Logo2" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 90px; align="Right" >
-
<span class="sdt_descr">Our Team</span>
+
 
-
</span>
+
<img src="http://www.dsm.com/en_US/static/common/img/banner-cworld-logo.png" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 260px; align="RIGHT" >
-
</a>
+
 
-
<div class="sdt_box">
+
<img src="http://home.tudelft.nl/fileadmin/UD/MenC/Support/Internet/TU_Website/TU_Delft_portal/Over_TU_Delft/Alumni/Verenigingen/Alumnivereniging/Alumnipas/Service/img/Logo_640_x_280.jpg" alt="TUDelft Logo2" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 460px; align="RIGHT" >
-
<a href="/Team:Brown-Stanford/Team">Team Members</a>
+
 
-
<a href="/Team:Brown-Stanford/Martian">Martian Colony</a>
+
<img src="http://www.selectscience.net/images/logos/companies/1393_Greiner-Bio-One-Logo_Intern.jpg" alt="TUDelft Logo2" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 970px; align="RIGHT" >
-
<!-- <a href="/Team:Brown-Stanford/Sponsors"></a>-->
+
 
-
</div>
+
<img src="http://edwingardner.com/projectivelandscape/site/img/UfD.gif" alt="TUDelft Logo2" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 750px; align="RIGHT" >
-
</li>
+
 
-
<li>
+
<img src="https://static.igem.org/mediawiki/2011/2/20/Dia1.png" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 630px; align="RIGHT" >
-
<a href="/Team:Brown-Stanford/REGObricks/Overview">
+
 
-
<img src="https://static.igem.org/mediawiki/2011/3/39/Brown-Stanford_REGObricks-Thumb.png" alt=""/>
+
<img src="https://static.igem.org/mediawiki/2011/e/e0/TU_Delft_iGEM_logo.jpg" alt="TUDelft Logo2" height="52" align="RIGHT" style="position:absolute; margin:20px 0px 0px 1150px; align="RIGHT" >
-
<span class="sdt_active"></span>
+
 
-
<span class="sdt_wrap">
+
<br>
-
<span class="sdt_link">REGObricks</span>
+
<div id="TU-wrapper">
-
<span class="sdt_descr">Martian regolith</span>
+
<div id="TU-header2">
-
</span>
+
<div id="TU-menu">
-
</a>
+
-
<div class="sdt_box">
+
<ul id="sdt_menu" class="sdt_menu">
-
<a href="/Team:Brown-Stanford/REGObricks/Overview">Project Overview</a>
+
<li>
-
</div>
+
<a href="https://2011.igem.org/Team:TU-Delft">
-
</li>
+
<img src="http://www.den-dopper.com/wp-content/uploads/2009/03/thumb_tudelft.png" alt=""/>
-
<li>
+
<span class="sdt_active"></span>
-
<a href="/Team:Brown-Stanford/PowerCell/Overview">
+
<span class="sdt_wrap">
-
<img src="https://static.igem.org/mediawiki/2011/9/9a/Brown-Stanford_PowerCell-Thumb.png" alt=""/>
+
<span class="sdt_link">Home</span>
-
<span class="sdt_active"></span>
+
<span class="sdt_descr"></span>
-
<span class="sdt_wrap">
+
</span>
-
<span class="sdt_link">PowerCell</span>
+
</a>
-
<span class="sdt_descr">Modular symbiosis</span>
+
</li>
-
</span>
+
<li>
-
</a>
+
<a href="https://2011.igem.org/Team:TU-Delft/Project">
-
<div class="sdt_box">
+
<img src="https://static.igem.org/mediawiki/2011/0/0a/Logo_vierkant_2011.jpg" alt=""/>
-
<a href="/Team:Brown-Stanford/PowerCell/Overview">Project Overview</a>
+
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">The Project</span>
 +
<span class="sdt_descr">What we are doing</span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
                        <br><br>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Project">Overview</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Modelling">Modelling</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Project/Detailed">Detailed</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Production">Production</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Transportation">Transportation</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Hydroxylation">Hydroxylation</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Localization">Localization</a>
 +
<a href="https://static.igem.org/mediawiki/2011/3/34/IGEM_TUDelft2011_Research_Proposal.pdf">Research Proposal</a>
</div>
</div>
-
</li>
+
</li>
-
<li>
+
 
-
<a href="/Team:Brown-Stanford/DNADamage/Overview">
+
<li>
-
<img src="https://static.igem.org/mediawiki/2011/4/4c/Brown-Stanford_DNADamage-Thumb.png" alt=""/>
+
<a href="https://2011.igem.org/Team:TU-Delft/Team">
-
<span class="sdt_active"></span>
+
<img src="https://static.igem.org/mediawiki/2011/5/5d/Teamfoto_wiki.jpg" alt=""/>
-
<span class="sdt_wrap">
+
<span class="sdt_active"></span>
-
<span class="sdt_link">DNA Damage Sensor</span>
+
<span class="sdt_wrap">
-
<span class="sdt_descr">Fluorescent markers</span>
+
<span class="sdt_link">The Team</span>
-
</span>
+
<span class="sdt_descr">Who we are</span>
-
</a>
+
</span>
-
<div class="sdt_box">
+
</a>
-
<a href="/Team:Brown-Stanford/DNADamage/Overview">Project Overview</a>
+
<div class="sdt_box">
-
</div>
+
                        <br>
-
</li>
+
                        <br>
-
<li>
+
                        <a href="https://2011.igem.org/Team:TU-Delft/Team">Overview</a>
-
<a href="/Team:Brown-Stanford/Lab/">
+
<a href="https://2011.igem.org/Team:TU-Delft/Team/Students">Students</a>
-
<!-- <img src="" alt=""/>-->
+
<a href="https://2011.igem.org/Team:TU-Delft/Team/Supervisors">Supervisors</a>
-
<span class="sdt_active"></span>
+
<a href="https://2011.igem.org/Team:TU-Delft/Team/University">University</a>
-
<span class="sdt_wrap">
+
</div>
-
<span class="sdt_link">Lab</span>
+
</li>
-
<span class="sdt_descr"></span>
+
<li>
-
</span>
+
<a href="https://2011.igem.org/Team:TU-Delft/Notebooks/Overview">
-
</a>
+
<img src="https://static.igem.org/mediawiki/2011/e/ee/TUDelft-Template-Notebook.png" alt=""/>
-
<div class="sdt_box">
+
<span class="sdt_active"></span>
-
<a href="/Team:Brown-Stanford/Lab/Notebook">Notebook</a>
+
<span class="sdt_wrap">
-
<a href="/Team:Brown-Stanford/Lab/Protocols">Protocols</a>
+
<span class="sdt_link">Notebooks</span>
-
<a href="/Team:Brown-Stanford/Lab/Safety">Safety</a>
+
<span class="sdt_descr">What we did</span>
-
</div>
+
</span>
-
</li>
+
</a>
-
</ul>
+
<div class="sdt_box">
 +
                      <a href="https://2011.igem.org/Team:TU-Delft/Notebooks/Overview">Overview</a>
 +
                      <a href="https://2011.igem.org/Team:TU-Delft/Notebooks">Students</a>
 +
                      <a href="https://2011.igem.org/Team:TU-Delft/Notebooks/Brainstorming">Brainstorming</a>
 +
                      <a href="https://2011.igem.org/Team:TU-Delft/Notebooks/Protocols">Protocols</a>
 +
<!-- <a href="#">Departments</a> -->
 +
</div>
 +
</li>
 +
 
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Human-Practice">
 +
<img src="https://static.igem.org/mediawiki/igem.org/6/61/Good_vs_Bad.jpg" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">Human Practice</span>
 +
<span class="sdt_descr">Awareness </span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
<br><br><br>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Human-Practice">Overview</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Human-Practice/Rathenau">Rathenau</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Human-Practice/Science-Centre">Science Centre</a>
 +
 +
</div>
 +
</li>
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Project/Safety">
 +
<img src="https://static.igem.org/mediawiki/2011/a/a2/Lab_safety.jpg" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">Safety</span>
 +
<span class="sdt_descr">Responsibilty</span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
<br>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Safety">Overview</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Safety/Safety-proposal">Safety proposal</a>
 +
 +
</li>
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History">
 +
<img src="https://static.igem.org/mediawiki/2011/0/01/Logo_with_book.jpg" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">Microbial history</span>
 +
<span class="sdt_descr">Where it all started</span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
<br>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History/Influences-of-Delft">Influences of Delft</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History/Van Leeuwenhoek">Van Leeuwenhoek</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History/Beijerink">Beijerink</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History/Iterson">Iterson</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Project/Microbial-History/Kluyer">Kluyver</a>
 +
</div>
 +
</li>
 +
<li>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Sponsors">
 +
<img src="https://static.igem.org/mediawiki/2011/f/fe/TUDelft-Template-Sponsors.png" alt=""/>
 +
<span class="sdt_active"></span>
 +
<span class="sdt_wrap">
 +
<span class="sdt_link">Our Partners</span>
 +
<span class="sdt_descr">Making it possible</span>
 +
</span>
 +
</a>
 +
<div class="sdt_box">
 +
<br>
 +
                        <br>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Sponsors">Sponsors</a>
 +
<a href="http://www.crowdfundingfacilities.com/content/igem-tu-delft">Support Us</a>
 +
                        <a href="https://2011.igem.org/Team:TU-Delft/Collaboration">Collaboration</a>
 +
<a href="https://2011.igem.org/Team:TU-Delft/Acknowledgement">Acknowledgements</a>
 +
</div>
 +
</li>
 +
</ul>
 +
</div>
 +
</body>
 +
<style type="text/css">
 +
 
 +
 
 +
#TU-header1 {
 +
width:100%;
 +
absolute:left;
 +
background-color:#fff;
 +
display:block;
 +
position:absolute;
 +
top:-15px;
 +
clear:both;
 +
solid white;
 +
height:130px;
 +
}
 +
 
 +
#TU-header2 {
 +
width:100%;
 +
height:67px;
 +
background-color:#002B60;
 +
display:block;
 +
position:absolute;
 +
top:73px;
 +
clear:both;
 +
}
 +
#TU-wrapper {
 +
line-height:1em;
 +
font-size:100%;
 +
font: normal sans-serif;
 +
}
 +
#TU-body {
 +
width:100%;
 +
min-height: 400px;
 +
display:block;
 +
float: left;
 +
clear:both;
 +
}
 +
#TU-body-wrapper {
 +
margin:-5px;
 +
width:100%;
 +
}
 +
#TU-footer {
 +
width:100%;
 +
height:50px;
 +
background-color:#002B60;
 +
display:block;
 +
float:left;
 +
}
 +
 
 +
 
 +
 
 +
</style>
 +
 
 +
 
 +
 
 +
<div id="TU-body">
 +
<div id="TU-body-wrapper">
 +
 
 +
 
 +
</html>
 +
<html>
 +
<body style="background-image: initial; background-repeat-x:no-repeat; background-repeat-y:no-repeat; background-repeat:no-repeat; background-attachment:initial; background-position:initial initial; background-position-x:initial; background-position-y:initial; background-origin:initial; background-clip:initial;background-color:#656565; margin:0pt; " onload="onPageLoad();" onunload="onPageUnload();" >
 +
    <div style="text-align:center; " >
 +
      <div style="background-color:#FFFFFF; text-align:left; width:1010px; margin:0px auto 0px auto; " id="body_content" >
</html>
</html>

Latest revision as of 18:08, 18 December 2011



TUDelft Logo2 TUDelft Logo2 TUDelft Logo2 TUDelft Logo2 TUDelft Logo2 TUDelft Logo2