Team:TUDelft/

From 2012.igem.org

(Difference between revisions)
Line 1: Line 1:
-
{{:Team:TU-Delft/Scripts}}
+
{{:Team:TU-Delft/Scripts}}{{:Team:TU-Delft/CSS}}
<html>
<html>
 +
<head>
 +
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 +
<title>TUDelft -Leiden iGEM 2011</title>
-
<!-- Scripting - START /-->
+
<link rel="stylesheet" type="text/css" href="https://2012.igem.org/Team:TU-Delft/CSS" media="screen" />
-
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.js"></script>
+
-
<script type="text/javascript" src="http://github.com/cowboy/jquery-hashchange/raw/v1.3/jquery.ba-hashchange.js"></script>
+
-
<!-- Font Replacer - START /-->
 
-
<script src="https://2010.igem.org/Team:TU_Delft/files/cufon-yui.js?action=raw&ctype=text/javascript" type="text/javascript"></script>
 
-
<script src="https://2010.igem.org/Team:TU_Delft/files/Mido_500.font.js?action=raw&ctype=text/javascript" type="text/javascript"></script>
 
-
<!-- Font Replacer - END /-->
 
-
<!-- Font Replacer - START /-->
+
<!-- HERE THE JAVASCRIPT CODE NEED TO CHANGE - NOW IT SAYS LEUVEN -->
-
<script src="https://2010.igem.org/Team:TU_Delft/files/cufon-yui.js?action=raw&ctype=text/javascript" type="text/javascript"></script>
+
<script type="text/javascript" src="http://homes.esat.kuleuven.be/~igemwiki/scripts/prototype.js"></script>
-
<script src="https://2010.igem.org/Team:TU_Delft/files/Mido_500.font.js?action=raw&ctype=text/javascript" type="text/javascript"></script>
+
<script type="text/javascript" src="http://homes.esat.kuleuven.be/~igemwiki/scripts/scriptaculous.js?load=effects,builder"></script>
-
<!-- Font Replacer - END /-->
+
<script type="text/javascript" src="http://homes.esat.kuleuven.be/~igemwiki/scripts/lightbox.js"></script>
 +
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
 +
</head>
 +
<body>
 +
<img src="https://igem.org/Image:Green-Chemistry-wpaper.png" class="bg_team">
-
<script>
+
<!-- THE LINK SHOWING OUR LOGO AND DIRECTING TO OUR FRONT PAGE UP LEFT<div id="logo_ed"><a href="https://2012.igem.org/Team:TUDelft" 'onfocus=this.blur()'><img src="HERE IT WILL BE OUR LOGO" border="0" width="100" height="100"></a></div>-->
-
//Global Vars
+
-
var currentPage;
+
-
var in_frame_test = 1;
+
-
var ampersandStr = String.fromCharCode(38);
+
-
var loading_home = false;
+
-
 
+
-
function dbgout(msg) {
+
-
  var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
+
-
  if(is_chrome) console.log(msg);
+
-
}
+
-
 
+
-
function updateContentEditLink() {
+
-
if (!wgUserName) {
+
-
return;
+
-
}
+
-
 
+
-
var page = currentPage ? currentPage : 'Home';
+
-
var url = location.pathname + '/' + page + '?action=edit';
+
-
$("#edit_content_link").attr('href', url);
+
-
// $("#edit_content_link").click(function() {
+
-
// $("#iGEM_TU_Delft_container").html('<iframe src="'+url+'" width="100%" height="100%"></iframe>');
+
-
// });
+
-
 
+
-
}
+
-
 
+
-
// Set document ready callback
+
-
$(function() {
+
-
if (wgUserName) {
+
-
// Create content edit link
+
-
$(".left-menu ul > *:last").after('<li><a id="edit_content_link">edit content</a></li>');
+
-
updateContentEditLink();
+
-
}
+
-
 
+
-
// Initialize history plugin.
+
-
$(window).hashchange(historyCallback);
+
-
rewriteLinks($("#navlist"));
+
-
 
+
-
historyCallback();
+
-
 
+
-
// setup hovering
+
-
$(".menu_button").hover(
+
-
function () { $(this).addClass("hover"); },
+
-
function () { $(this).removeClass("hover"); }
+
-
);
+
-
});
+
-
 
+
-
 
+
-
function isDefined(variable)
+
-
{
+
-
    return typeof(window[variable]) != "undefined";
+
-
}
+
-
 
+
-
function splitHash(hash) {
+
-
var kvpairs = hash.split(ampersandStr);
+
-
var i;
+
-
var kvmap = {};
+
-
for(i=0;i<kvpairs.length;i++) {
+
-
var s = kvpairs[i].split('=');
+
-
kvmap[s[0]] = s[1];
+
-
}
+
-
return kvmap;
+
-
}
+
-
 
+
-
function makeHash(page, kvmap) {
+
-
var str = '#page=' + page;
+
-
var i;
+
-
if (kvmap) {
+
-
for(i in kvmap) {
+
-
str += ampersandStr + i + '=' + kvmap[i];
+
-
}
+
-
}
+
-
return str; 
+
-
}
+
-
 
+
-
function setHash(page, kvmap) {
+
-
location.hash = makeHash(page,kvmap);
+
-
}
+
-
 
+
-
 
+
-
function include_js(file, cb) {
+
-
var html_doc = document.getElementsByTagName('head')[0];
+
-
var js = document.createElement('script');
+
-
js.setAttribute('type', 'text/javascript');
+
-
js.setAttribute('src', file);
+
-
html_doc.appendChild(js);
+
-
 
+
-
js.onreadystatechange = function () {
+
-
if (js.readyState == 'complete')
+
-
cb();
+
-
}
+
-
 
+
-
js.onload = cb;
+
-
}
+
-
 
+
-
function loadScript(src, callback)
+
-
{
+
-
  include_js(src, callback);
+
-
}
+
-
 
+
-
 
+
-
function moveToAnchor(anchor) {
+
-
try {
+
-
var pos = $('#iGEM_TU_Delft_container > a[name='+anchor+']').offset();
+
-
dbgout('anchor: '+anchor+';  pos=' + pos.left + ','+pos.top );
+
-
window.scroll(pos.left, pos.top);
+
-
} catch (err) {
+
-
dbgout('moveToAnchor error: ' + err);
+
-
}
+
-
}
+
-
 
+
-
 
+
-
function loadPage(page, anchor)
+
-
{
+
-
var showLoadAnim = !!currentPage;
+
-
currentPage = page;
+
-
var url = wgServer + "https://2012.igem.org/Team:TUDelft" + page + "?action=render";
+
-
if(page.substring(0, 5) == "User:") {
+
-
url = wgServer + "/" + page + "?action=render";
+
-
}
+
-
$(window).trigger('page_close');
+
-
 
+
-
if(showLoadAnim) {
+
-
$("#TUD-loading-panel").show();
+
-
//$("#loading-overlay").show();
+
-
$("#iGEM_TU_Delft_container").fadeTo(200,0.25);
+
-
$('html, body').animate({scrollTop:0}, 'slow');
+
-
}
+
-
loading_home = false;
+
-
 
+
-
var processPage = function(next) {
+
-
dbgout('processPage: ' + page);
+
-
$(window).trigger('page_init');
+
-
rewriteLinks($("#iGEM_TU_Delft_container"));
+
-
updateContentEditLink();
+
-
$("#iGEM_TU_Delft_container").fadeTo(200,1).delay(200).queue(function(n) {
+
-
if(anchor) moveToAnchor(anchor); n();
+
-
});
+
-
next();
+
-
}
+
-
+
-
$.get(url, function(data) {
+
-
$("#iGEM_TU_Delft_container").html(data).queue(processPage);
+
-
buildBreadCrumbTrail(page);
+
-
Cufon.replace('h2'); // Works without a selector engine
+
-
Cufon.replace('h3'); // Works without a selector engine
+
-
Cufon.replace('#sub1'); // Requires a selector engine for IE 6-7, see above
+
-
$("tr:nth-child(odd)").addClass("odd");
+
-
 
+
-
$("#TUD-loading-panel").hide();
+
-
$("#loading-overlay").hide();
+
-
});
+
-
}
+
-
 
+
-
function historyCallback() {
+
-
var hash = location.hash;
+
-
if(hash) {
+
-
hash = hash.substring(1);
+
-
if(hash.split('=').length > 1) {
+
-
var kvmap = splitHash(hash);
+
-
var changepage;
+
-
 
+
-
// looks a little clumsy, but js AND operator conflicts with mediawiki markup
+
-
if (kvmap.page) if(kvmap.page != currentPage) changepage = kvmap.page;
+
-
 
+
-
if (changepage) {
+
-
loadPage(changepage, kvmap.anchor);
+
-
} else {
+
-
if(kvmap.anchor) moveToAnchor(kvmap.anchor);
+
-
$(window).trigger('hashupdate');
+
-
}
+
-
}
+
-
} else {
+
-
setHash('Home');
+
-
}
+
-
}
+
-
 
+
-
function rewriteLinks(elem) {
+
-
$("a",elem).each(function() {
+
-
var txt = $(this).text();
+
-
var url = this.href;
+
-
 
+
-
if(this.hash) {
+
-
var anchor = this.hash.substring(1);
+
-
 
+
-
if (anchor.substring(0,5)!='page=')
+
-
this.href = '#page=' + currentPage + ampersandStr + 'anchor=' + anchor;
+
-
} else if(txt != "edit")
+
-
this.href = this.href.replace("https://2012.igem.org/Team:TUDelft", "#page=");
+
-
 
+
-
// dbgout('rewriting ' + url + ' to ' + this.href);
+
-
});
+
-
}
+
-
 
+
-
 
+
-
</script>
+
-
<script type="text/javascript">
+
-
var timeout    = 500;
+
-
var closetimer = 0;
+
-
var ddmenuitem = 0;
+
-
 
+
-
function jsddm_open() {
+
-
  jsddm_canceltimer();
+
-
  jsddm_close();
+
-
  ddmenuitem = $(this).find('ul').css('display', 'block');
+
-
//ddmenuitem = $(this).find('ul').show(200);
+
-
}
+
-
 
+
-
function jsddm_close() {
+
-
  if(ddmenuitem) ddmenuitem.css('display', 'none');
+
-
//if(ddmenuitem) ddmenuitem.hide();
+
-
}
+
-
 
+
-
function jsddm_timer() {
+
-
  closetimer = window.setTimeout(jsddm_close, timeout);
+
-
}
+
-
 
+
-
function jsddm_canceltimer() {
+
-
  if(closetimer) {
+
-
    window.clearTimeout(closetimer);
+
-
    closetimer = null;
+
-
  }
+
-
}
+
-
 
+
-
$(function() {
+
-
  $('#navlist > li').bind('mouseover', jsddm_open);
+
-
  $('#navlist > li').bind('mouseout',  jsddm_timer);
+
-
// $("#navlist li ul li:even").addClass("alt");
+
-
});
+
-
 
+
-
document.onclick = jsddm_close;
+
-
</script>
+
-
 
+
-
<script language="javascript" type="text/javascript">
+
-
function capitaliseFirstLetter(string)
+
-
{
+
-
    return string.charAt(0).toUpperCase() + string.slice(1);
+
-
}
+
-
 
+
-
function buildDepth(array,count)
+
-
{
+
-
var depthStr="";
+
-
for (i=0;i<count;i++)
+
-
{
+
-
depthStr=depthStr + array[i] + "/" ;
+
-
}
+
-
return depthStr;
+
-
}
+
-
function buildBreadCrumbTrail(page)
+
-
{
+
-
var constituentFolders = new Array();
+
-
var currentURL = page;
+
-
constituentFolders=currentURL.split("/");
+
-
var outputStr="<a href='https://2012.igem.org/Team:TUDelft'>Home</a>";
+
-
if(page != "Home") {
+
-
for (count=0;count<(constituentFolders.length);count++)
+
-
{
+
-
if(constituentFolders[count].substring(0, 5) == "User:") {
+
-
outputStr = outputStr + " <span class='doubleright'>&raquo;</span><a href='https://2012.igem.org/Team:TU-Delft/Team'>Team</a> <span class='doubleright'>&raquo;</span> <a href='https://2010.igem.org/Team:TU_Delft#page=Team/members'>Members</a> <span class='doubleright'>&raquo;</span> <a href='https://2012.igem.org/Team:TUDelft' + buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" + capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ").substring(5) + "</a>";
+
-
}
+
-
if(constituentFolders[count].substring(0, 5) !== "User:") {
+
-
outputStr=outputStr + " <span class='doubleright'>&raquo;</span> <a href='https://2012.igem.org/Team:TUDelft' + buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" + capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ") + "</a>";
+
-
}
+
-
}
+
-
}
+
-
$("#breadcrumbs").html(outputStr);
+
-
}
+
-
</script>
+
-
<!-- END of scripting -->
+
-
 
+
-
 
+
-
<!-- CSS -->
+
-
 
+
-
<style type="text/css">
+
-
/* Team: TU Delft */
+
-
#globalWrapper { background-color: transparent; border: none; margin: 0; padding: 0; width: 100%;
+
-
height:auto !important; /* real browsers */
+
-
height:100%; /* IE6: treaded as min-height*/
+
-
min-height:100%; /* real browsers */
+
-
}
+
-
#content { z-index: 1; background-color: transparent; border: none; padding: 0; margin: 0; width: 100%; overflow: hidden; margin-top: -15px !important; margin-top: 0px;
+
-
height:auto !important; /* real browsers */
+
-
height:100%; /* IE6: treaded as min-height*/
+
-
min-height:100%; /* real browsers */
+
-
}
+
-
#bodyContent { border: none; padding:0; margin:0; width:100%;
+
-
height:auto !important; /* real browsers */
+
-
height:100%; /* IE6: treaded as min-height*/
+
-
min-height:100%; /* real browsers */
+
-
}
+
-
#top-section { z-index: 2; height: 15px; margin: 0px; margin-left: auto; margin-right: auto; margin-bottom: 0 !important; padding:0; border: none; font-size: 10px;}
+
-
#p-logo { height:1px; overflow:hidden; display: none;}
+
-
#search-controls { overflow:hidden; display:block; background: none; position: absolute; top: 100px; right: 40px;}
+
-
.left-menu { width: 500px !important; display:block; margin-top:-80px; border: none; text-align: right;}
+
-
.left-menu ul { border: none; }
+
-
#menubar.right-menu { width:300px; display:block; float:left; margin-top:-80px; border: none;}
+
-
.right-menu ul { border: none; width: 300px;}
+
-
#footer-box { background-color: #FF8D00; border: none; width: 100%; margin: -10px auto 0 auto; padding: 20px 0;}
+
-
.visualClear { display: none; }
+
-
#footer { border: none; width: 965px; margin: 0 auto; padding: 0;}
+
-
.firstHeading { display: none;}
+
-
#f-list a { color: #333; font-size: 10px;}
+
-
#f-list a:hover { color: #666;}
+
-
.printfooter { display: none; }
+
-
#footer ul { margin: 0; padding: 0;}
+
-
#footer ul li { margin-top: 0; margin-bottom: 0; margin-left: 10px; margin-right: 10px; padding: 0;}
+
-
#search-controls { display:none; }
+
-
h3#siteSub { display: none;}
+
-
#contentSub {display: none;}
+
-
p:first-child { display: none;}
+
-
h1{border:none; width: 100%; clear: both;}
+
-
/* Wiki Hacks - END */
+
-
 
+
-
table {
+
-
margin: 0;
+
-
padding: 0;
+
-
font-size: 11px;
+
-
border: 1px solid #000;
+
-
}
+
-
table td {
+
-
padding: 5px;
+
-
}
+
-
table .head {
+
-
background-color: FFDC00 ;
+
-
font-weight: bold;
+
-
color: #fff;
+
-
}
+
-
table .odd {
+
-
background-color: #FFDE6C;
+
-
}
+
-
 
+
-
h2 {
+
-
font-size: 30px;
+
-
border: none;
+
-
}
+
-
 
+
-
h3 {
+
-
font-size: 20px;
+
-
border: none;
+
-
}
+
-
 
+
-
html, body {
+
-
margin: 0;
+
-
padding: 0;
+
-
width: 100%;
+
-
height: 100%;
+
-
}
+
-
 
+
-
body {
+
-
background-color: #FFDE6C;
+
-
font-family: Verdana, Arial;
+
-
font-size: 12px;
+
-
color: #2DBF82;
+
-
min-width: 1050px;
+
-
}
+
-
+
-
#TUD-main-wrapper {
+
-
width: 100%;
+
-
height:auto !important; /* real browsers */
+
-
height:100%; /* IE6: treaded as min-height*/
+
-
min-height:100%; /* real browsers */
+
-
text-align: center;
+
-
+
-
background-position: bottom left;
+
-
background-repeat: repeat-x;
+
-
display: block;
+
-
font-family: Verdana, Arial;
+
-
font-size: 12px;
+
-
color: #78BF82;
+
-
}
+
-
 
+
-
#TUD-main-wrapper div {
+
-
line-height: 18px;
+
-
}
+
-
 
+
-
/* IE ignores this */
+
-
html>body #TUD-main-wrapper {
+
-
height: auto;
+
-
min-height: 100%;
+
-
}
+
-
 
+
-
#TUD-main-wrapper2 {
+
-
width: 100%;
+
-
height:auto !important; /* real browsers */
+
-
height:100%; /* IE6: treaded as min-height*/
+
-
min-height:100%; /* real browsers */
+
-
text-align: center;
+
-
+
-
background-repeat: repeat-x;
+
-
background-repeat: repeat-x;
+
-
display: block;
+
-
font-family: Verdana, Arial;
+
-
font-size: 12px;
+
-
color: #78BF82;
+
-
margin-top: -8px;
+
-
}
+
-
 
+
-
/* IE ignores this */
+
-
html>body #TUD-main-wrapper2 {
+
-
height: auto;
+
-
min-height: 100%;
+
-
}
+
-
 
+
-
#TUD-content-wrapper {
+
-
background-color: #fff;
+
-
text-align: left;
+
-
width: 1024px;
+
-
margin: 0 auto;
+
-
padding: 0;
+
-
height:auto !important; /* real browsers */
+
-
height:100%; /* IE6: treaded as min-height*/
+
-
min-height:100%; /* real browsers */
+
-
}
+
-
 
+
-
#TUD-header {
+
-
width: 1024px;
+
-
text-align: center;
+
-
height: 120px;
+
-
}
+
-
 
+
-
#TUD-menu {
+
-
width: 1024px;
+
-
text-align: center;
+
-
height: 38px;
+
-
}
+
-
 
+
-
 
+
-
#TUD-body-wrapper {
+
-
width: 100%;
+
-
+
-
/* FireFox collapsing margin fix */
+
-
padding-top: 1px;/*important*/
+
-
margin-top: -1px;/*important*/
+
-
}
+
-
 
+
-
#TUD-body-container {
+
-
width: 100%;
+
-
+
-
background-repeat: no-repeat;
+
-
/* FireFox collapsing margin fix */
+
-
padding-top: 1px;/*important*/
+
-
margin-top: -1px;/*important*/
+
-
display: block;
+
-
}
+
-
 
+
-
#TUD-body-content {
+
-
+
-
width: 1024px;
+
-
background-repeat: no-repeat;
+
-
background-position: bottom left;
+
-
padding-bottom: 15px
+
-
}
+
-
 
+
-
.TUD-logo {
+
-
color: #FF8D00;
+
-
width: 300px;
+
-
height: 95px;
+
-
margin-left: 90px;
+
-
background-repeat: no-repeat;
+
-
border: none;
+
-
text-align: left;
+
-
}
+
-
+
-
#TUD-main-content {
+
-
width: 904px;
+
-
margin: 10px 60px 0px 60px;
+
-
}
+
-
+
-
#iGEM_TU_Delft_container {
+
-
min-height: 400px;
+
-
}
+
-
 
+
-
#TUD-footer {
+
-
width: 100%;
+
-
height: 254px;
+
-
text-align: center;
+
-
}
+
-
 
+
-
h1 {
+
-
margin: 0;
+
-
padding: 0;
+
-
display: block;
+
-
float: left;
+
-
}
+
-
 
+
-
 
+
-
 
+
-
 
+
-
#TUD-loading-panel {
+
-
z-index: 100;
+
-
position: absolute;
+
-
left: 0px;
+
-
top: 0px;
+
-
width: 100%;
+
-
height: 100%;
+
-
display:none;
+
-
}
+
-
 
+
-
 
+
-
#loading-overlay {
+
-
z-index: 70;
+
-
width: 100%;
+
-
height: 100%;
+
-
display:none;
+
-
opacity:0.4;
+
-
filter:alpha(opacity=40);
+
-
}
+
-
 
+
-
#back_to_igem {
+
-
margin: 15px 0 0 0;
+
-
padding:0;
+
-
float: right;
+
-
}
+
-
 
+
-
/* MENU */
+
-
#navlist {
+
-
margin: 0 0 0 55px;
+
-
padding: 0;
+
-
}
+
-
 
+
-
#navlist li {
+
-
display: block;
+
-
list-style-type: none;
+
-
float:left;
+
-
padding: 0;
+
-
margin: 0;
+
-
}
+
-
 
+
-
#navlist li a {
+
-
text-decoration: none;
+
-
color: #000;
+
-
}
+
-
 
+
-
#navlist li a:hover {
+
-
text-decoration: underline;
+
-
}
+
-
 
+
-
#navlist li ul {
+
-
position: absolute;
+
-
display:none;
+
-
background-color: #fff;
+
-
padding:0;
+
-
border: 1px solid #aaa;
+
-
z-index:100;
+
-
margin-left: 0px;
+
-
margin-top: 4px;
+
-
}
+
-
 
+
-
html>body #navlist li ul {
+
-
margin-left: 0;
+
-
}
+
-
 
+
-
#navlist li ul li {
+
-
list-style-type:none;
+
-
float:left;
+
-
clear:both;
+
-
z-index:100;
+
-
}
+
-
 
+
-
#navlist li ul li a {
+
-
display: block;
+
-
color: #222;
+
-
width: 150px;
+
-
border: 1px solid #E8CA00;
+
-
padding: 3px;
+
-
}
+
-
 
+
-
#navlist li ul li a:hover {
+
-
color: #000;
+
-
background-color: #FFD10F;
+
-
text-decoration: underline;
+
-
}
+
-
 
+
-
/*#insilico_menu li a {
+
-
width: 230px !important;
+
-
}*/
+
-
 
+
-
.menubutton {
+
-
color: #FF8D00;
+
-
display:block;
+
-
margin: 13px 10px 0px 10px;
+
-
}
+
-
/* FOOTER */
+
-
#TUD-footer, #TUD-footer-content {
+
-
width: 904px;
+
-
margin: 0 auto;
+
-
text-align: left;
+
-
}
+
-
/*TABLE .odd {
+
-
background-color: #FFD970;
+
-
} */
+
-
 
+
-
</style>
+
-
<!-- CSS - end -->
+
 +
<div id="logo_igem"><object data="http://homes.esat.kuleuven.be/~igemwiki/html/igemlogo.html" style="overflow:hidden;" type="text/html" width="99" height="80"></object></div>
 +
<div id="twitter_widget">
 +
<a href="#" onfocus='blur()' onclick='javascript:this.parentNode.style.display="none"; return false;'><img src="http://homes.esat.kuleuven.be/~igemwiki/images/close_button.png" width="10" height="10" style="margin: 0 0 0 140px;" alt="close"></a>
<script>
<script>
-
</script>
+
new TWTR.Widget({
-
 
+
  version: 2,
-
<script type="text/javascript">
+
  type: 'profile',
-
var timeout    = 500;
+
   rpp: 3,
-
var closetimer = 0;
+
   interval: 6000,
-
var ddmenuitem = 0;
+
   width: '120',
-
 
+
  height: 210,
-
function jsddm_open() {
+
  theme: {
-
   jsddm_canceltimer();
+
    shell: {
-
   jsddm_close();
+
      background: '#fff',
-
   ddmenuitem = $(this).find('ul').css('display', 'block');
+
      color: '#999'
-
//ddmenuitem = $(this).find('ul').show(200);
+
    },
-
}  
+
    tweets: {
-
 
+
      background: '#fff',
-
function jsddm_close() {
+
      color: '#000',
-
  if(ddmenuitem) ddmenuitem.css('display', 'none');
+
      links: '#999'
-
//if(ddmenuitem) ddmenuitem.hide();
+
    }
-
}
+
  },
-
 
+
  features: {
-
function jsddm_timer() {
+
    scrollbar: false,
-
  closetimer = window.setTimeout(jsddm_close, timeout);
+
    loop: false,
-
}
+
    live: true,
-
 
+
    hashtags: true,
-
function jsddm_canceltimer() {
+
    timestamp: true,
-
  if(closetimer) {
+
     avatars: false,
-
     window.clearTimeout(closetimer);
+
     behavior: 'all'
-
     closetimer = null;
+
   }
   }
-
}
+
}).render().setUser('TudelftIgem2012').start();
-
 
+
-
$(function() {
+
-
  $('#navlist > li').bind('mouseover', jsddm_open);
+
-
  $('#navlist > li').bind('mouseout',  jsddm_timer);
+
-
// $("#navlist li ul li:even").addClass("alt");
+
-
});
+
-
 
+
-
document.onclick = jsddm_close;
+
</script>
</script>
 +
</div>
-
<script language="javascript" type="text/javascript">
+
<!--SOCIAL MEDIA LINK <div id="social_linkall"><a href="http://bit.ly/qebk0N" target="_blank"><img src="http://homes.esat.kuleuven.be/~igemwiki/images/twitter_allmedia.png" width="120" height="35" border="0" /></a></div> -->
-
function capitaliseFirstLetter(string)
+
-
{
+
-
    return string.charAt(0).toUpperCase() + string.slice(1);
+
-
}
+
-
function buildDepth(array,count)
+
<!--SOCIAL ICONS - view source  <div id="social_icons"><object data="http://homes.esat.kuleuven.be/~igemwiki/html/social_icons.html" style="overflow:hidden;" type="text/html" width="110" height="24"></object></div> -->
-
{
+
-
var depthStr="";
+
-
for (i=0;i<count;i++)
+
-
{
+
-
depthStr=depthStr + array[i] + "/" ;
+
-
}
+
-
return depthStr;
+
-
}
+
-
</script>
+
<div id="centeredmenu_bg"></div>
-
<!-- Scripting END /-->
+
<ul id="nav">
-
 
+
-
<a name="top"></a>
+
-
 
+
-
<div id="TUD-loading-panel">
+
-
<div id="TUD-loading-panel-logo">
+
-
<!-- yes im using center
+
-
<center><img width="100" height="120" src="https://static.igem.org/mediawiki/2010/d/d8/TUDelft_2010_AlkanivoreAnimated.gif" /> <h2>Loading...</h2></center>-->
+
-
</div>
+
-
</div>
+
-
 
+
-
<div id="TUD-main-wrapper2">
+
-
<div id="TUD-main-wrapper">
+
-
<div id="TUD-content-wrapper">
+
<li class="on"><a href="https://2012.igem.org/Team:TUDelft">Home</a>
-
<div id="TUD-header">
+
    <ul>
-
<style>
+
-
a.nohover:hover {
+
-
text-decoration: none;
+
-
}
+
-
</style>
+
-
<a class="nohover" href="https://2012.igem.org/Team:TUDelft"><h1 class="TUD-logo"><span>iGEM 2012 TUDelft - Leiden </span></h1></a>
+
-
<!--<span id="back_to_igem"><a href="https://2012.igem.org/Main_Page" alt="back to 2012.igem.org" title="back to 2012.igem.org"><img src="https://static.igem.org/mediawiki/2010/3/32/TU_Delft_back_to_igem.png" border="0" /></a></span>-->
+
-
</div>
+
-
<div id="TUD-menu">
+
-
<ul id="navlist">
+
</ul></li>
-
<li><a class="menubutton" id="home" href="https://2012.igem.org/Team:TUDelft" title="Home"><span>Home</span></a></li>
+
-
<li><a class="menubutton" id="team" href="https://2012.igem.org/Team:TU-Delft/Team" title="Team"><span>Team</span></a>
+
<li class="off"><a href="https://2012.igem.org/Team:TUDelft">Project</a>
-
<ul>
+
    <ul>
-
<li><a href="" title="Overview">Overview</a></li>
+
<li><a href="#">Description</a></li>
-
<li><a href="https://2012.igem.org/Team:TU-Delft/Team" title="Members">Members</a></li>
+
<li><a href="#">Modeling</a></li>
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/organization" title="Organization">Organization</a></li>-->
+
<li><a href="#">Biobricks</a></li>
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/university" title="University">University</a></li>-->
+
<li><a href="#">Results</a></li>
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/previous-teams" title="Previous Teams">Previous Teams</a></li>-->
+
</ul></li>
-
<li><a href="" title="Picture Gallery">Picture Gallery</a></li>
+
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/movies" title="Movies">Movies</a></li>-->
+
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/ijam" title="iJAM">iJAM</a></li>-->
+
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=Team/statistics" title="Statistics">Statistics</a></li>-->
+
-
</ul>
+
-
</li>
+
-
<li><a class="menubutton" id="project" href="https://2012.igem.org/Team:TU-Delft/Project" title="Project">Project</a>
+
-
<ul>
+
-
<li><a href="" title="Overview">Overview</a></li>
+
-
<li><a href="" title="Introduction">Introduction</a></li>
+
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/alkane-degradation" title="Alkane Degradation">Alkane Degradation</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/sensing" title="Hydrocarbon Sensing">Sensing</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/tolerance" title="Survival">Survival</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/solubility" title="Emulsification">Solubility</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/rbs-characterization" title="RBS Characterization">RBS Characterization</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/conclusions" title="General Conclusions">General Conclusions</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Project/references" title="References">References</a></li>-->
+
-
</ul>
+
-
</li>
+
-
<li><a class="menubutton" id="insilico" href="https://2012.igem.org/Team:TU-Delft/Notebook" title="Notebook">Notebook</a>
+
<li class="off"><a href="https://2012.igem.org/Team:TUDelft">Data</a>
-
<ul>
+
    <ul>
-
<li><a href="k" title="Overview">Overview</a></li>
+
<li><a href="#">Data</a></li>
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/blog" title="Blog">Blog</a></li>
+
<li><a href="#">Home</a></li>
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/timeline" title="Timeline">Timeline</a></li>
+
<li><a href="#">Home</a></li>
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/brainstorm" title="Brainstorm">Brainstorm</a></li>
+
<li><a href="#">Home</a></li>
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/cloning-plan" title="Cloning Plan">Cloning Plan</a></li>
+
</ul></li>
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Notebook/protocols" title="Protocols">Protocols</a></li>-->
+
-
</ul>
+
-
</li>
+
-
<li><a class="menubutton" id="parts" href="https://2012.igem.org/Team:TU-Delft/Parts" title="Parts">Parts</a>
+
<li class="off"><a href="https://2012.igem.org/Team:TUDelft">Team</a>
-
<ul>
+
    <ul>
-
<li><a href="" title="Overview">Overview</a></li>
+
<li><a href="#">Team</a></li>
-
<li><a href="" title="BioBricks">BioBricks</a></li>
+
<li><a href="#">Home</a></li>
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=Parts/characterization" title="Characterization">Characterization</a></li>-->
+
<li><a href="#">Home</a></li>
-
</ul>
+
<li><a href="#">Home</a></li>
-
</li>
+
</ul></li>
-
<!--
+
-
<li><a class="menubutton" id="insilico" href="" title="In Silico">In Silico</a>
+
-
<ul id="insilico_menu">
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling" title="Overview">Overview</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/MFA" title="MFA">Metabolic Flux Analysis</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/HC_regulation" title="Hydrocarbon Regulation">Hydrocarbon Regulation</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/protein-production-model" title="Protein production model">Protein production model</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/pcaif-model" title="pCaiF CRP sensing model">pCaiF CRP sensing model</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/interaction-mapping" title="Software Tool">Interaction Mapping</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Software/part-search" title="Part search server & iPhone app">Part search server & iPhone app</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Modeling/wiki-tips-tricks" title="Wiki tips & tricks">Wiki Tips &amp; Tricks</a></li>
+
-
</ul>
+
-
</li>
+
-
-->
+
-
<li><a class="menubutton" id="safety" href="https://2012.igem.org/Team:TU-Delft/Safety" title="Safety">Safety</a>
+
-
<ul>
+
-
<li><a href="" title="Overview">Overview</a></li>
+
-
<li><a href="" title="Biosafety">Biosafety in the lab</a></li>
+
-
</ul>
+
-
</li>
+
-
<li><a class="menubutton" id="humanpractice" href="https://2012.igem.org/Team:TU-Delft/HumanPractice" title="Human Practice">Human Practice</a>
+
<li class="off"><a href="https://2012.igem.org/Team:TUDelft">Human Practices</a>
-
<ul>
+
    <ul>
-
<li><a href="https://2012.igem.org/Team:TU-Delft/HumanPractice" title="Overview">Overview</a></li>
+
<li><a href="#">Ethics</a></li>
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=EPAC" title="EPAC">EPAC</a></li>-->
+
<li><a href="#">Education</a></li>
-
<li><a href="" title="Education">Education</a></li>
+
<li><a href="#">Safety</a></li>
-
<!--<li><a href="https://2010.igem.org/Team:TU_Delft#page=Perception" title="Perception">Perception</a></li>
+
<li><a href="#">Home</a></li>
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Awareness" title="Awareness">Awareness</a></li>-->
+
</ul></li>
-
</ul>
+
 
-
</li>
+
-
+
-
<!--<li><a class="menubutton" id="education" href="https://2010.igem.org/Team:TU_Delft#page=Education" title="Education">Education</a>
+
-
<ul>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education" title="Overview">Overview</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/science-museum" title="Science Museum">Science Museum</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/game" title="Game">iGEM Game</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/Workshop_on_synthetic_biology" title="SynBio Workshop">SynBio Workshop</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Education/nemo" title="Night of the Nerds">Night of the Nerds</a></li>
+
-
</ul>
+
-
</li>-->
+
-
<!--<li><a class="menubutton" id="publicity" href="https://2010.igem.org/Team:TU_Delft#page=Publicity" title="Publicity">Publicity</a>
+
-
<ul>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity" title="Overview">Overview</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/communication_plan" title="Communication Plan">Communication Plan</a></li>
+
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/in-the-news" title="In The News">In the Media</a></li>
+
-
<!-- <li><a href="https://2010.igem.org/Team:TU_Delft#page=Publicity/articles" title="Articles">Articles</a></li>
+
-
</ul>
+
-
</li>-->
+
-
<li><a class="menubutton" id="collaboration" href="https://2012.igem.org/Team:TU-Delft/Collaboration" title="Collaboration">Collaboration</a>
 
-
<!--<ul>
 
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration" title="Overview">Overview</a></li>
 
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/sponsors" title="Sponsors">Sponsors</a></li>
 
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/Rathenau Institute" title="Rathenau Institute">Rathenau Institute</a></li>
 
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/Science Centre Delft" title="Science Centre Delft">Science Centre Delft</a></li>
 
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/igem-teams" title="iGEM Teams">iGEM Teams</a></li>
 
-
<li><a href="https://2010.igem.org/Team:TU_Delft#page=Collaboration/acknowledgements" title="Acknowledgements">Acknowledgements</a></li>
 
-
</ul>-->
 
-
</li>
 
-
<li><a class="menubutton" id="collaboration" href="https://2012.igem.org/Team:TU-Delft/Contact" title="Contact">Contact</a></li>
 
</ul>
</ul>
-
</div>
 
-
<div id="TUD-body-wrapper">
 
-
<div id="TUD-body-container">
 
-
<div id="TUD-body-content">
+
<div id="contentbox" style="text-align:justify;">
-
<div id="TUD-main-content">
+
-
<div id="loading-overlay"></div>
+
-
<div id="breadcrumbs"></div>
+
-
<div id="iGEM_TU_Delft_container">
+
-
<!-- logo photos TUDELFT Leiden-->
+
-
<img src="https://static.igem.org/mediawiki/2012/0/0c/TU-Delft_logo.jpg" width=200>
+
-
<img src="https://static.igem.org/mediawiki/2012/0/0c/Leiden_logo.jpg" width=200>
+
-
<!-- end logo photos -->
+
 +
<h3><i>dghfdgh</i>: xfhggfhf</h3>
 +
dsfghfg<br><p>
 +
To stimulate ice formation, we will let our bacterium produce Ice Nucleating Proteins (INP), which stimulate the formation of ice crystals. These bacteria could be used in lakes to make the ice stronger, so maybe in future, we can once again have a <a href="http://en.wikipedia.org/wiki/Elfstedentocht" target="blank">"11-stedentocht"</a> in the Netherlands. You could use this property as well for the creation of fluorescent ice on ski-slopes or for trendy cocktails with glowing ice cubes in it. Also, it would decrease ice-melting of glaciers, thereby effectively slowing global warming. An application on smaller level, is the incorporation of <i>E.D. Frosti</i> in <a href="https://2011.igem.org/Team:KULeuven/Applications" target="blank"> the cooling system of an ice rink</a>. In that way, ice formation can be induced at elevated temperatures (approximately -5у instead of app. -23у).
 +
<br><p>
 +
fhgdfghfdhgf<br>
 +
<b> Edit:</b> Although <i> cgh</i> ghdfgh<br><br>
-
<!-- temporary intro text -->
+
<div id="groupphoto" style="position:relative; top:0; left:0; width:560px; height:255px; border:0; margin:0 0 20px 0; padding:0; overflow:hidden;">
-
<p> This year students from TUDelft cooperate with Leiden's students for an iGEM project that.... seems to be very smelly!
+
<a href="https://static.igem.org/mediawiki/igem.org/b/bc/Teamphoto1.jpg" rel="lightbox" title="iGem TUDelft Leiden team 2012"><img src="https://static.igem.org/mediawiki/igem.org/b/bc/Teamphoto1.jpg" name="kugroup" width="560" height="255" border="0" id="kugroup" /></a></div><br>
-
Tasks are divided and studens work feverishly already! Some of them check the new arrivals and some of them the literature. But what do they work on?
+
-
Their attention is attracted by making a diagnostisation method to sense Tuberculosis molecules. And how this will be done? By providing a platform to easily implement
+
-
olfactory receptors in the yeast chassis. In other words our mission is to make E. coli and Yeast react on each other by smells and the compound AHL to create a new way of Intra-kindom communication.</p>
+
-
<p> You can check the members of our team from the main menu. If you have questions regarding us or our project, feel free to contact us by sending an email to: <a href="mailto:tudelft.igem.2012gmail.com?subject=Feedback&body=Questions:">tudelft.igem.2012@gmail.com</a>.</p>
+
</div>
-
<p> You can also find us on <a href="https://www.facebook.com/TudelftIgem2012">facebook</a>! </p>
+
-
<!-- end intro text -->
+
-
 
+
</body>
-
 
+
-
<!-- calls facebook page is connected through the scripts page-->
+
-
<div class="fb-like-box" data-href="https://www.facebook.com/TudelftIgem2012" data-width="550" data-show-faces="false" data-stream="true" data-header="false"></div>
+
-
 
+
-
</div>
+
-
</div>
+
-
</div>
+
-
</div>
+
-
</div>
+
-
</div>
+
-
<div id="TUD-footer">
+
-
<div id="TUD-footer-content">
+
-
 
+
-
<div id="TUD-footer-contact-info">
+
-
<span class="TUD-footer-title">About the TUDelft - Leiden Team</span>
+
-
<div class="br"></div>
+
-
Eleven students from two universities work together, combining their knowledge and their willingness to create. In this page you will find out all our motions. For more information about us, please do not hesitate to contact us :D
+
-
<div class="br"></div>
+
-
<a href="https://2012.igem.org/Team:TU-Delft/Team">Meet the team</a>
+
-
<br />
+
-
<a href="#top">Back to top</a>
+
-
</div>
+
-
 
+
-
<div id="TUD-footer-search">
+
-
<span class="TUD-footer-title">Search</span>
+
-
 
+
-
<div class="br"></div>
+
-
<form action="/Special:Search" id="search-form">
+
-
<!--<input id="searchInput" name="search" type="text" title="Search 2010.igem.org [f]" accesskey="f" value="" />-->
+
-
<input type='submit' name="go" class="searchButton" id="searchGoButton" value="Go" title="Go to a page with this exact name if exists" />&nbsp;
+
-
<input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Search" title="Search the pages for this text" />
+
-
</form>
+
-
<br />
+
-
<span class="TUD-footer-title">Contact us</span>
+
-
<div class="br"></div>
+
-
<i>Building 5, room 0.620</i><br />
+
-
Julianalaan 67, 2628 BC Delft, The Netherlands<br />
+
-
<div class="br"></div>
+
-
<b>E:</b> <a href="mailto:tudelft.igem.2012@gmail.com">tudelft.igem.2012@gmail.com</a><br />
+
-
 
+
-
<div class="br"></div>
+
-
<b>T:</b> +31 (0)15 278 1625
+
-
</div>
+
-
 
+
-
<div id="TUD-footer-navlist">
+
-
<span class="TUD-footer-title">Navigate our wiki</span>
+
-
<div class="br"></div>
+
-
<ul>
+
-
<li><a href="https://2012.igem.org/Team:TUDelft">Home</a></li>
+
-
<li><a href="https://2012.igem.org/Team:TU-Delft/Team">Team</a></li>
+
-
<li><a href="https://2012.igem.org/Team:TU-Delft/Project">Project</a></li>
+
-
<!--<li><a href="/Team:TU_Delft#page=Notebook/blog">Blog</a></li>-->
+
-
<li><a href="https://2012.igem.org/Team:TU-Delft/Parts">Parts</a></li>
+
-
<li><a href="https://2012.igem.org/Team:TU-Delft/Safety">Safety</a></li>
+
-
<!--<li><a href="">Education</a></li>
+
-
<li><a href="/Team:TU_Delft#page=Publicity">Publicity</a></li>-->
+
-
<li><a href="https://2012.igem.org/Team:TU-Delft/Collaboration">Collaboration</a></li>
+
-
<li><a href="https://2012.igem.org/Team:TU-Delft/Contact">Contact</a></li>
+
-
</ul>
+
-
</div>
+
-
 
+
-
<div id="TUD-footer-twitter-box">
+
-
<div id="twitter_div">
+
-
<ul id="twitter_update_list"><li></li></ul>
+
-
</div>
+
-
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script> <!-- TWITTER -->
+
-
 
+
-
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/iGEMTUDELFT2010.json?callback=twitterCallback2&amp;count=3"></script>
+
-
<div class="socialicon" style="background-image:url(https://static.igem.org/mediawiki/2010/c/c8/Facebook-32x32.png);"><a href="https://www.facebook.com/TudelftIgem2012" title="TU Delft iGEM Facebook"></a></div>
+
-
<div class="socialicon" style="background-image:url(https://static.igem.org/mediawiki/2010/7/7e/Twitter-32x32.png);"><a href="https://twitter.com/#!/search/realtime/TudelftIgem2012" title="TU Delft iGEM Team Twitter"></a></div>
+
-
<!--<div class="socialicon" style="background-image:url(https://static.igem.org/mediawiki/2010/3/38/Youtube-32x32.png);"><a href="http://www.youtube.com/user/igemtudelft2010" title="TU Delft iGEM Team YouTube"></a></div>-->
+
-
<!--<div class="socialicon" style="background-image:url(https://static.igem.org/mediawiki/2010/2/22/Linkedin-32x32.png);"><a href="http://www.linkedin.com/groups?gid=3070941" title="TU Delft iGEM Team LinkedIn"></a></div>-->
+
-
</div>
+
-
 
+
-
<style>
+
-
#TUD-footer-content {
+
-
padding: 25px 0 25px 0;
+
-
font-size: 10px;
+
-
color: #000;
+
-
line-height: 12px;
+
-
}
+
-
 
+
-
#TUD-footer-content div {
+
-
line-height: 12px;
+
-
}
+
-
 
+
-
#TUD-footer-content a {
+
-
color: #30BF82;
+
-
}
+
-
 
+
-
.br {
+
-
height: 5px;
+
-
width: 100%;
+
-
margin: 0;
+
-
padding: 0;
+
-
overflow: hidden;
+
-
color: #000;
+
-
}
+
-
 
+
-
#TUD-footer-contact-info {
+
-
float: left;
+
-
width: 153px;
+
-
}
+
-
 
+
-
#TUD-footer-search {
+
-
float: left;
+
-
width: 153px;
+
-
margin-left: 30px;
+
-
}
+
-
 
+
-
#TUD-footer-navlist {
+
-
float: left;
+
-
width: 153px;
+
-
margin-left: 30px;
+
-
}
+
-
 
+
-
#TUD-footer-twitter-box {
+
-
float: left;
+
-
width: 350px;
+
-
margin-left: 30px;
+
-
}
+
-
 
+
-
.TUD-footer-title {
+
-
font-weight: bold;
+
-
color: #30BF82;
+
-
}
+
-
 
+
-
#TUD-footer-search form {
+
-
margin: 0;
+
-
padding: 0;
+
-
font-size: 10px;
+
-
}
+
-
 
+
-
#TUD-footer-search form #searchInput {
+
-
background-color: #FFD970;
+
-
border: 1px solid #000;
+
-
width: 100%;
+
-
}
+
-
 
+
-
#TUD-footer-search form .searchButton {
+
-
margin-top: 4px;
+
-
font-size: 11px;
+
-
background-color: #FFDE6C;
+
-
border: 1px solid #000;
+
-
color: #FF8D00;
+
-
padding: 2px;
+
-
}
+
-
 
+
-
#TUD-footer-navlist ul {
+
-
margin: 0;
+
-
padding: 0;
+
-
list-style-type: none;
+
-
list-style: none;
+
-
}
+
-
 
+
-
#TUD-footer-navlist ul li {
+
-
height: 14px;
+
-
display: block;
+
-
margin: 1px;
+
-
background-color: #EBD464;
+
-
padding: 0 5px;
+
-
}
+
-
 
+
-
#TUD-footer-navlist ul li a {
+
-
text-decoration: none;
+
-
}
+
-
 
+
-
#TUD-footer-navlist ul li a:hover {
+
-
text-decoration: underline;
+
-
}
+
-
 
+
-
#TUD-footer-content .socialicon {
+
-
margin-top: 4px;
+
-
margin-right:10px;
+
-
width:32px;
+
-
height:32px;
+
-
display:block;
+
-
float:left;
+
-
}
+
-
 
+
-
#TUD-footer-content .socialicon a {
+
-
width:100%;
+
-
height:100%;
+
-
display:block;
+
-
}
+
-
 
+
-
 
+
-
#twitter_div {
+
-
background-image: url('https://static.igem.org/mediawiki/2010/e/ec/TU_Delft_twitterBG.gif');
+
-
background-repeat: no-repeat;
+
-
border-bottom-style: solid;
+
-
border-bottom-width: 1px;
+
-
border-bottom-color: #30BF82;
+
-
font-family: Arial, Helvetica, sans-serif;
+
-
font-size: 0.9em;
+
-
margin-top:10px;
+
-
padding-top: 33px;
+
-
padding-right: 5px;
+
-
padding-left: 5px;
+
-
width: 340px;
+
-
overflow: hidden;
+
-
}
+
-
 
+
-
#twitter_div ul {
+
-
list-style-type: none;
+
-
margin: 5px 0 5px 0;
+
-
padding: 0;
+
-
width: 340px;
+
-
}
+
-
 
+
-
#twitter_div ul li {
+
-
color: #CFD96C;
+
-
border-bottom-style: solid;
+
-
border-bottom-width: 1px;
+
-
border-bottom-color: #FFD970;
+
-
margin: 0 0 3px 0;
+
-
}
+
-
+
-
#twitter_div ul li a {
+
-
text-decoration: none;
+
-
color: #E8CA00;
+
-
}
+
-
+
-
#twitter_div ul li a:hover {
+
-
text-decoration: none;
+
-
color: #A4D17C;
+
-
}
+
-
+
-
#twitter_div p {
+
-
text-align: right;
+
-
padding-right: 6px;
+
-
padding-bottom: 10px;
+
-
}
+
-
</style>
+
-
 
+
-
</div>
+
-
</div>
+
-
</div>
+
-
</div>
+
-
<script type="text/javascript">
+
-
 
+
-
  var _gaq = _gaq || [];
+
-
  _gaq.push(['_setAccount', 'UA-16783722-1']);
+
-
  _gaq.push(['_trackPageview']);
+
-
 
+
-
  (function() {
+
-
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+
-
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+
-
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+
-
  })();
+
-
 
+
-
</script>
+
</html>
</html>

Revision as of 14:22, 14 June 2012

TUDelft -Leiden iGEM 2011
close

dghfdgh: xfhggfhf

dsfghfg

To stimulate ice formation, we will let our bacterium produce Ice Nucleating Proteins (INP), which stimulate the formation of ice crystals. These bacteria could be used in lakes to make the ice stronger, so maybe in future, we can once again have a "11-stedentocht" in the Netherlands. You could use this property as well for the creation of fluorescent ice on ski-slopes or for trendy cocktails with glowing ice cubes in it. Also, it would decrease ice-melting of glaciers, thereby effectively slowing global warming. An application on smaller level, is the incorporation of E.D. Frosti in the cooling system of an ice rink. In that way, ice formation can be induced at elevated temperatures (approximately -5у instead of app. -23у).

fhgdfghfdhgf
Edit: Although cgh ghdfgh