Team:Rutgers/Acknowledgements

From 2011.igem.org

(Difference between revisions)
m
m
Line 1: Line 1:
 +
 +
__NOTOC__
 +
{{:Team:Rutgers/Template/Header}}
 +
<html>
<html>
<head>
<head>
Line 5: Line 9:
-
<!--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">
 
 +
<style type="text/css">
 +
<!--
 +
.style3 {
 +
text-align: center;
 +
}
 +
-->
 +
</style>
 +
</head>
-
<!-- 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>
 
-
 
-
 
-
 
-
 
-
 
-
</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" bgcolor="#F1F1F1" >
   <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>

Revision as of 03:27, 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.

The Staff at Waksman Institute,
For keeping our team motivated and helping in any way possible.