Team:Rutgers/Acknowledgements

From 2011.igem.org

(Difference between revisions)
m
 
(4 intermediate revisions not shown)
Line 1: Line 1:
 +
__NOTOC__
 +
{{:Team:Rutgers/Template/Header}}
 +
<html>
<html>
<head>
<head>
Line 5: Line 8:
-
<!--CSS-->
+
</style>
-
<link rel='stylesheet' type='text/css' href='https://2011.igem.org/Template:Team:Rutgers/menu?action=raw&amp;ctype=text/css' />
+
-
 
+
-
<link rel='stylesheet' type='text/css' href='https://2011.igem.org/Template:Team:Rutgers/style?action=raw&amp;ctype=text/css' />
+
-
 
+
-
<!--REHOST-->
+
-
<link rel="stylesheet" href="http://zacstewart.github.com/Meow/jquery.meow.css" type="text/css" media="screen" title="no title" charset="utf-8">
+
-
 
+
-
 
+
-
<!-- jquery -->
+
-
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.js"></script>
+
-
 
+
-
<!-- JS -->
+
-
<script src="http://zacstewart.github.com/Meow/jquery.meow.js" type="text/javascript" charset="utf-8"></script>
+
-
 
+
-
<script type="text/javascript" src="https://2011.igem.org/Template:Team:Rutgers/css_menu?action=raw&amp;ctype=text/javascript"></script>
+
-
 
+
-
 
+
-
<--!
+
-
<link rel="stylesheet" href="menu.css" type="text/css" media="screen" />
+
-
<link rel="stylesheet" href="style.css" /
+
-
>-->
+
-
 
+
-
<script type="text/javascript">
+
-
 
+
-
$(document).ready(function()
+
-
{
+
-
$("#showcase").awShowcase(
+
-
{
+
-
content_width: 800,
+
-
content_height: 600,
+
-
fit_to_parent: false,
+
-
auto: false,
+
-
interval: 3000,
+
-
continuous: false,
+
-
loading: true,
+
-
tooltip_width: 200,
+
-
tooltip_icon_width: 32,
+
-
tooltip_icon_height: 32,
+
-
tooltip_offsetx: 18,
+
-
tooltip_offsety: 0,
+
-
arrows: true,
+
-
buttons: true,
+
-
btn_numbers: true,
+
-
keybord_keys: true,
+
-
mousetrace: false, /* Trace x and y coordinates for the mouse */
+
-
pauseonover: true,
+
-
stoponclick: false,
+
-
transition: 'fade', /* hslide/vslide/fade */
+
-
transition_delay: 0,
+
-
transition_speed: 500,
+
-
show_caption: 'onload', /* onload/onhover/show */
+
-
thumbnails: false,
+
-
thumbnails_position: 'outside-last', /* outside-last/outside-first/inside-last/inside-first */
+
-
thumbnails_direction: 'vertical', /* vertical/horizontal */
+
-
thumbnails_slidex: 1, /* 0 = auto / 1 = slide one thumbnail / 2 = slide two thumbnails / etc. */
+
-
dynamic_height: false, /* For dynamic height to work in webkit you need to set the width and height of images in the source. Usually works to only set the dimension of the first slide in the showcase. */
+
-
speed_change: true, /* Set to true to prevent users from swithing more then one slide at once. */
+
-
viewline: false, /* If set to true content_width, thumbnails, transition and dynamic_height will be disabled. As for dynamic height you need to set the width and height of images in the source. */
+
-
custom_function: null /* Define a custom function that runs on content change */
+
-
});
+
-
});
+
-
 
+
-
</script>
+
-
+
-
<!-- stick in its own global file -->
+
-
    <script>
+
-
      $(document).ready(function() {
+
-
        $.meow({
+
-
          message: $('#onready'),
+
-
          icon: 'folder_32.png'
+
-
        });
+
-
        $('#button').click(function () {
+
-
          $.meow({
+
-
            message: $('#onclick'),
+
-
            icon: 'folder_32.png'
+
-
          });
+
-
        });
+
-
        $('#onchange').change(function () {
+
-
          $.meow({
+
-
            title: 'I have a defined title!',
+
-
            message: $('#onchange'),
+
-
            /*icon: '/icons/chart_16.png'*/
+
-
          });
+
-
        });
+
-
+
-
$('#Link').click(function () {
+
-
          $.meow({
+
-
            message: 'What goes here?',
+
-
            icon: "83-calendar.png"
+
-
          });
+
-
});
+
-
+
-
        $('#selectonchange').change(function () {
+
-
          $.meow({
+
-
            message: $('#selectonchange'),
+
-
            icon: 'folder_32.png'
+
-
          });
+
-
        });
+
-
        $('#sticky').click(function () {
+
-
          $.meow({
+
-
            message: 'I\'m a sticky meow!',
+
-
            icon: 'folder_32.png',
+
-
            sticky: true
+
-
          });
+
-
        });
+
-
        $('#uncloseable').click(function () {
+
-
          $.meow({
+
-
            message: 'I am uncloseable!',
+
-
            icon: 'folder_32.png',
+
-
            closeable: false
+
-
          });
+
-
        });
+
-
        $('#callbacks').click(function () {
+
-
          $.meow({
+
-
            message: 'I have callbacks!',
+
-
            icon: 'folder_32.png',
+
-
            beforeCreateFirst: function () {
+
-
              alert(this + ' is the first meow!');
+
-
            },
+
-
            beforeCreate: function () {
+
-
              alert('About to create ' + this);
+
-
            },
+
-
            afterCreate: function () {
+
-
              alert('Just created ' + this);
+
-
            },
+
-
            onTimeout: function () {
+
-
              alert(this + ' just timed out.');
+
-
            },
+
-
            beforeDestroy: function () {
+
-
              alert('About to destroy ' + this);
+
-
            },
+
-
            afterDestroy: function () {
+
-
              alert('And it\'s gone');
+
-
            },
+
-
            afterDestroyLast: function () {
+
-
              alert('There are no meows left :3');
+
-
            }
+
-
          });
+
-
        });
+
-
      });
+
-
    </script>
+
-
 
+
-
 
+
<style type="text/css">
<style type="text/css">
-
 
<!--
<!--
-
table.mesa {
+
.style3 {
-
color: #f1f1f1;
+
-
}
+
-
table.mesa th {
+
-
padding: 0px;
+
-
background-color: #f1f1f1;
+
-
}
+
-
table.mesa td {
+
-
padding: 0px;
+
-
background-color: #f1f1f1;
+
-
}
+
-
body,td,th {
+
-
font-family: Arial, Helvetica, sans-serif;
+
-
font-size: 36px;
+
text-align: center;
text-align: center;
-
color: #CCC;
 
-
}
 
-
body {
 
-
margin-left: 0px;
 
-
margin-top: 0px;
 
-
margin-right: 0px;
 
-
margin-bottom: 0px;
 
-
}
 
-
.Test {
 
-
color: #252525;
 
-
text-align: right; font-size: px;
 
-
}
 
-
.Test strong {
 
-
color: #666;
 
-
font-size: 48px;
 
-
font-weight: bold;
 
}
}
 +
-->
 +
</style>
 +
</head>
-
<style type="text/css">
 
-
html, body { height:100% }
 
-
body, h1, h2, p {
 
-
border:0;
 
-
margin:0;
 
-
padding:0;
 
-
text-align: left;
 
-
}
 
-
body {
 
-
font-family: helvetica, arial, sans-serif;
 
-
background-image:-webkit-gradient(radial, 50% 50%, 0, 50% 50%, 300, from(#888), to(#444));
 
-
background-image:url();
 
-
background-size:100% 100%;
 
-
-webkit-perspective:500px;
 
-
-moz-perspective:500px;
 
-
background-repeat: repeat-x;
 
-
 
-
/* IE10 */
 
-
background-image: -ms-linear-gradient(top right, #212121 40%, #D4D4D4 70%, #FFFFFF 100%);
 
-
/* Mozilla Firefox */
 
-
background-image: -moz-linear-gradient(top right, #212121 40%, #D4D4D4 70%, #FFFFFF 100%);
 
-
/* Opera */
 
-
background-image: -o-linear-gradient(top right, #212121 40%, #D4D4D4 70%, #FFFFFF 100%);
 
-
/* Webkit (Safari/Chrome 10) */
 
-
background-image: -webkit-gradient(linear, right top, left bottom, color-stop(.4, #212121), color-stop(0.7, #D4D4D4), color-stop(1, #FFFFFF));
 
-
/* Webkit (Chrome 11+) */
 
-
background-image: -webkit-linear-gradient(top right, #212121 40%, #D4D4D4 70%, #FFFFFF 100%);
 
-
/* Proposed W3C Markup */
 
-
background-image: linear-gradient(top right, #212121 40%, #D4D4D4 70%, #FFFFFF 100%);
 
-
background-color: transparent;
 
-
 
-
 
-
 
-
 
-
 
-
}
 
-
a { color:#bbb; }
 
-
#text {
 
-
position:absolute;
 
-
width:998px;
 
-
height:53px;
 
-
left:601px;
 
-
top:398px;
 
-
margin-left:-300px;
 
-
margin-top:-60px;
 
-
text-align:center;
 
-
text-transform:uppercase;
 
-
-webkit-tranform:translateZ(0);
 
-
-webkit-transition-duration:0.05s;
 
-
-moz-tranform:translateZ(0);
 
-
color:#f3f3f3;
 
-
text-shadow:0 0 1px rgba(0,0,0,.2);
 
-
}
 
-
 
-
 
-
p {
 
-
top:0;
 
-
width:90%;
 
-
font-size:16px;
 
-
color:#333;
 
-
text-shadow:0 -1px 0 rgba(0,0,0,0.1);
 
-
font-family: Arial, Helvetica, sans-serif;
 
-
padding-top: 10px;
 
-
padding-right: 10;
 
-
padding-bottom: 10px;
 
-
padding-left: 10;
 
-
right: 2px;
 
-
text-align: left;
 
-
}
 
-
a:link {
 
-
color: #333;
 
-
}
 
-
a:visited {
 
-
color: #333;
 
-
}
 
-
a:hover {
 
-
color: #666;
 
-
}
 
-
a:active {
 
-
color: #FFF;
 
-
}
 
-
.floatingHeader {
 
-
  position: fixed;
 
-
  top: 0;
 
-
  visibility: hidden;
 
-
}
 
-
.imgshadow2 table {
 
-
text-align: left;
 
-
}
 
-
.imgshadow2 table tr td div p {
 
-
text-align: left;
 
-
}
 
-
.imgshadow2 table {
 
-
font-size: 24px;
 
-
text-align: justify;
 
-
}
 
-
.imgshadow2 table tr td div p {
 
-
text-align: justify;
 
-
}
 
-
.imgshadow2 {
 
-
text-align: left;
 
-
}
 
-
 
-
.style2 {font-family: Verdana, Geneva, sans-serif; text-align: center; color: #333333; }
 
-
.style3 {
 
-
color: #666666;
 
-
font-size: 24px;
 
-
}
 
-
.imgshadow2 blockquote table {
 
-
text-align: left;
 
-
}
 
-
.imgshadow2 blockquote table {
 
-
text-align: left;
 
-
}
 
-
.imgshadow2 blockquote table {
 
-
text-align: left;
 
-
}
 
-
</style>
 
-
 
-
 
-
 
-
 
-
</head>
 
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
-
<table width="60%" border="0" align="center" cellpadding="0" cellspacing="20" bordercolor="#F1F1F1" background="https://static.igem.org/mediawiki/2011/9/96/Stripe.png" bgcolor="#F1F1F1" >
+
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="20" bordercolor="#F1F1F1" background="https://static.igem.org/mediawiki/2011/9/96/Stripe.png">
   <tr>
   <tr>
     <td height="58" colspan="2" td background="https://static.igem.org/mediawiki/2011/9/96/Stripe.png"><p class="style3">RUTGERS iGEM TEAM WIKI</p>
     <td height="58" colspan="2" td background="https://static.igem.org/mediawiki/2011/9/96/Stripe.png"><p class="style3">RUTGERS iGEM TEAM WIKI</p>
Line 339: Line 49:
           </tr>
           </tr>
         <tr>
         <tr>
-
           <td colspan="6" bgcolor="#F1F1F1" class="stuff"><h4 class="shadow">
+
           <td colspan="6" class="stuff"><h4 class="shadow">
             </h4>
             </h4>
-
             <p>Dr. Andrew Vershon,<br>
+
             <p><strong>Dr. Andrew Vershon,</strong><br>
               Waksman Institute of Microbiology<br>
               Waksman Institute of Microbiology<br>
-
               For invaluable supervision of our projects and use of lab space and supplies.</p>
+
               <em>For invaluable supervision of our projects and use of lab space and supplies.</em></p>
-
             <p>Dr. James Stapleton,<br>
+
             <p><strong>Dr. James Stapleton,</strong><br>
               Center for Advanced Biotechnology and Medicine<br>
               Center for Advanced Biotechnology and Medicine<br>
-
               For supervision of all projects and limitless patience.</p>
+
               <em>For supervision of all projects and limitless patience.</em></p>
-
             <p>Dr. Ryan Golhar,<br>
+
             <p><strong>Dr. Ryan Golhar,</strong><br>
               The Cancer Institute of New Jersey<br>
               The Cancer Institute of New Jersey<br>
-
               For supervision of the MYS!S project.</p>
+
               <em>For supervision of the MYS!S project.</em></p>
-
             <p>Dr. Janet Mead,<br>
+
             <p><strong>Dr. Janet Mead,</strong><br>
               Waksman Institute for Microbiology<br>
               Waksman Institute for Microbiology<br>
-
               For supervision of our projects and insightful project ideas.</p>
+
               <em>For supervision of our projects and insightful project ideas.</em></p>
-
             <p>Ms. Grace Chen,<br>
+
             <p><strong>Ms. Grace Chen,</strong><br>
               Waksman Institute for Microbiology<br>
               Waksman Institute for Microbiology<br>
-
               For knowledgeable supervision of our projects.</p>
+
               <em>For knowledgeable supervision of our projects.</em></p>
-
             <p>Dr. Michael Pazzani,<br>
+
             <p><strong>Dr. Michael Pazzani,</strong><br>
               Vice President for Research and Economic Development<br>
               Vice President for Research and Economic Development<br>
-
               For his generous financial support in making this team and competition a possibility.</p>
+
               <em>For his generous financial support in making this team and competition a possibility.</em></p>
-
             <p>Dr. Marie Logue,<br>
+
             <p><strong>Dr. Marie Logue,</strong><br>
               Associate Vice President for Academic Engagement and Programming<br>
               Associate Vice President for Academic Engagement and Programming<br>
-
               For her generous financial support in making this team and competition a possibility.</p>
+
               <em>For her generous financial support in making this team and competition a possibility.</em></p>
-
             <p>Dean Thomas Papathomas,<br>
+
             <p><strong>Dean Thomas Papathomas,</strong><br>
               Busch Campus Dean, Department of Biomedical Engineering<br>
               Busch Campus Dean, Department of Biomedical Engineering<br>
-
               For his generous financial support in making this team and competition a possibility.</p>
+
               <em>For his generous financial support in making this team and competition a possibility.</em></p>
-
             <p>Dean Richard Ludescher,<br>
+
             <p><strong>Dean Richard Ludescher,</strong><br>
               Dean of Academic Programs, Department of Food Science<br>
               Dean of Academic Programs, Department of Food Science<br>
-
               For his generous financial support in making this team and competition a possibility.</p>
+
               <em>For his generous financial support in making this team and competition a possibility.</em></p>
-
             <p>Dean Justine Levine,<br>
+
             <p><strong>Dean Justine Levine,</strong><br>
               Administrative Director of the Aresty Research Center<br>
               Administrative Director of the Aresty Research Center<br>
-
               For providing support for the Regional Jamboree Registration.</p>
+
               <em>For providing support for the Regional Jamboree Registration.</em></p>
-
             <p>Jean Patrick Antoine,<br>
+
             <p><strong>Jean Patrick Antoine,</strong><br>
               School of Engineering, Program Development Specialist<br>
               School of Engineering, Program Development Specialist<br>
-
               For supporting the cost of lab expenses.</p>
+
               <em>For supporting the cost of lab expenses.</em></p>
-
             <p>Dr. Anirvan Sengupta,<br>
+
             <p><strong>Dr. Anirvan Sengupta,</strong><br>
               BioMaPS Institute for Quantitative Biology<br>
               BioMaPS Institute for Quantitative Biology<br>
-
               For assistance with the start of our team.</p>
+
               <em>For assistance with the start of our team.</em></p>
-
             <p>Dr. Eric Lam,<br>
+
             <p><strong>Dr. Eric Lam,</strong><br>
               Rutgers Department of Plant Biology and Pathology<br>
               Rutgers Department of Plant Biology and Pathology<br>
-
               For assistance with the start of our team.</p>
+
               <em>For assistance with the start of our team.</em></p>
-
             <p>The Staff at Waksman Institute,<br>
+
             <p><strong>Waksman Business Office,</strong><br>
               For keeping our team motivated and helping in any way possible. </p>
               For keeping our team motivated and helping in any way possible. </p>
-
<p class="stuff"><a href="https://2011.igem.org/Team:Rutgers/MYS!S_WT">https://2011.igem.org/Team:Rutgers/MYS!S_WT</a></p>
 
             <p class="stuff">&nbsp;</p></td>
             <p class="stuff">&nbsp;</p></td>
           </tr>
           </tr>

Latest revision as of 03:56, 29 September 2011

Rutgers 2011 iGEM Team: Complex Circuits in Synthetic Biology

Rutgers 2011 iGEM Team: Complex Circuits in Synthetic Biology

 

 

RUTGERS iGEM TEAM WIKI

Acknowledgements

Menu >> The Bacterial Etch-a-Sketch >> Goals

We Thank...

Dr. Andrew Vershon,
Waksman Institute of Microbiology
For invaluable supervision of our projects and use of lab space and supplies.

Dr. James Stapleton,
Center for Advanced Biotechnology and Medicine
For supervision of all projects and limitless patience.

Dr. Ryan Golhar,
The Cancer Institute of New Jersey
For supervision of the MYS!S project.

Dr. Janet Mead,
Waksman Institute for Microbiology
For supervision of our projects and insightful project ideas.

Ms. Grace Chen,
Waksman Institute for Microbiology
For knowledgeable supervision of our projects.

Dr. Michael Pazzani,
Vice President for Research and Economic Development
For his generous financial support in making this team and competition a possibility.

Dr. Marie Logue,
Associate Vice President for Academic Engagement and Programming
For her generous financial support in making this team and competition a possibility.

Dean Thomas Papathomas,
Busch Campus Dean, Department of Biomedical Engineering
For his generous financial support in making this team and competition a possibility.

Dean Richard Ludescher,
Dean of Academic Programs, Department of Food Science
For his generous financial support in making this team and competition a possibility.

Dean Justine Levine,
Administrative Director of the Aresty Research Center
For providing support for the Regional Jamboree Registration.

Jean Patrick Antoine,
School of Engineering, Program Development Specialist
For supporting the cost of lab expenses.

Dr. Anirvan Sengupta,
BioMaPS Institute for Quantitative Biology
For assistance with the start of our team.

Dr. Eric Lam,
Rutgers Department of Plant Biology and Pathology
For assistance with the start of our team.

Waksman Business Office,
For keeping our team motivated and helping in any way possible.