Team:Minnesota

From 2012.igem.org

(Difference between revisions)
m
m
 
(30 intermediate revisions not shown)
Line 1: Line 1:
-
{{Minnesota_Main_Styles}}
+
{{Minnesota_Main_Styles2}}
<html>
<html>
<head>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Team:Minnesota</title>
<title>Team:Minnesota</title>
 +
 +
<script type="text/javascript" src="jquery.js"></script>
 +
<script type="text/javascript">
 +
 +
 +
$(document).ready(function(){
 +
 +
  // jQuery functions go here...
 +
 +
//vertical autocenter
 +
$(window).resize(function(){
 +
  $('#ContentAll').css({
 +
    position:'absolute',
 +
    top: ($(window).height() - $('#ContentAll').outerHeight())/2
 +
  });
 +
});
 +
 +
$(window).resize();
 +
//end vertial autocenter
 +
 +
 +
//main page image switcher
 +
 +
$("#mainRightButton1").hover(
 +
    function() {
 +
      $(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/welcome_maroon_txt.png");
 +
      $("#mainRightButton2").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/projects_gold_img.png");
 +
      $("#mainRightButton3").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/theteam_gold_img.png");
 +
      $("#MainBoxContentImg").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/image1_resized.png");
 +
      $(".mainContentTextBanner").text("Welcome to the University of Minnesota iGEM team website! Please take some time to explore around by hovering over the icons on the right for quick blurbs or navigate using the buttons to the left. We hope you enjoy learning about us and what we do!");
 +
    },         
 +
    function() {
 +
//actually dont need to do anything on mouseout
 +
//$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/welcome_gold_txt.png");
 +
}
 +
);
 +
 +
$("#mainRightButton2").hover(
 +
    function() {
 +
      $(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/projects_maroon_txt.png");
 +
      $("#mainRightButton1").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/welcome_gold_txt.png");
 +
      $("#mainRightButton3").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/theteam_gold_img.png");
 +
      $("#MainBoxContentImg").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/image4_resized.png");
 +
      $(".mainContentTextBanner").text("We are a dedicated team of students from the University of Minnesota - Twin Cities working to further the field of synthetic biology scientifically and to make it more accessible to the public! Click the team button on the left to learn more about each of us!");
 +
    },         
 +
    function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/projects_maroon_img.png");}
 +
);
 +
 +
$("#mainRightButton3").hover(
 +
    function() {
 +
      $(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/theteam_maroon_txt.png");
 +
      $("#mainRightButton1").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/welcome_gold_txt.png");
 +
      $("#mainRightButton2").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/projects_gold_img.png");
 +
      $("#MainBoxContentImg").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/image3_resized.png");
 +
      $(".mainContentTextBanner").text("Our team is working on projects that both help to develop the field of synthetic biology and are just awesome in general! This year, we are working on making caffeinated bread and a sunscreen that requires only one application. Ever! Click the project button on the left to learn more!");
 +
    },         
 +
    function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/theteam_maroon_img.png");}
 +
);
 +
 +
 +
 +
 +
//social media button switchers
 +
$("#fbButton").hover(
 +
    function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/facebook.png");},         
 +
    function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/facebook_1.png");}
 +
);
 +
 +
$("#twitterButton").hover(
 +
    function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/twitter.png");},         
 +
    function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/twitter_1.png");}
 +
);
 +
 +
 +
 +
}); //ends .ready function
 +
 +
 +
 +
</script>
 +
<style type="text/css">
<style type="text/css">
 +
 +
</style>
</style>
 +
 +
<script type="text/javascript">
 +
function displayDate()
 +
{
 +
var currentDate = new Date();
 +
var compDate = new Date(2012,10,3,0,0,0,0);
 +
var dif = compDate - currentDate;
 +
var sec = dif/1000;
 +
var min = sec/60;
 +
var hour = min/60;
 +
var day = hour/24;
 +
var week = Math.floor(day/7);
 +
var dispday = Math.floor(day)%24;
 +
var disphour = Math.floor(hour)%24;
 +
var dispmin = Math.floor(min)%60;
 +
var dispsec = Math.floor(sec)%60;
 +
var dispString = "Time until iGEM North America East Regional Jamboree: " + week + " weeks, " + dispday + " days, " + disphour + " hours, " + dispmin + " minutes, " + dispsec + " seconds.";
 +
document.getElementById("demo").innerHTML=dispString;
 +
t=setTimeout('displayDate()',500);
 +
 +
}
 +
</script>
 +
</head>
</head>
 +
<body>
<body>
-
<table>
+
<div id="ContentAll">
-
<tr><td colspan="2" style="width:1000px; align:center;"><img src='http://i1158.photobucket.com/albums/p607/iGEM_MN/rs_title_3.png'></td></tr>
+
 
-
<tr><td>
+
<div id="MainBannerImage">
-
<div class="sideNavBar">
+
<img src="http://i1158.photobucket.com/albums/p607/iGEM_MN/MainBanner_trans.png">
 +
</div>
 +
<div id="MainBanner">
 +
</div>
 +
 
 +
<div id="SideBarAll">
 +
<div class="sideNavBar2">
<ul>
<ul>
-
<li><a class="current" href='https://2012.igem.org/Team:Minnesota'>Home</a></li>
+
<li><a class="current" href='https://2012.igem.org/Team:Minnesota'>HOME</a></li>
-
<li><a href='https://2012.igem.org/Team:Minnesota/Team'>Team</a></li>
+
<li><a href='https://2012.igem.org/Team:Minnesota/Team'>TEAM</a></li>
-
<li><a href='https://2012.igem.org/Team:Minnesota/Project'>Project</a></li>
+
<li><a href='https://2012.igem.org/Team:Minnesota/Project'>PROJECT</a></li>
-
<li><a href='https://2012.igem.org/Team:Minnesota/Notebook'>Notebook</a></li>
+
<li><a href='https://2012.igem.org/Team:Minnesota/Software'>SOFTWARE</a></li>
-
<li><a href='https://2012.igem.org/Team:Minnesota/Attributions'>Attributions</a></li>
+
<li><a href='https://2012.igem.org/Team:Minnesota/Notebook'>NOTEBOOK</a></li>
-
<li><a href='https://2012.igem.org/Team:Minnesota/Safety'>Safety</a></li>
+
<li><a href='https://2012.igem.org/Team:Minnesota/Attributions'>ATTRIBUTIONS</a></li>
 +
<li><a href='https://2012.igem.org/Team:Minnesota/Outreach'>OUTREACH</a></li>
 +
<li><a href='https://2012.igem.org/Team:Minnesota/Safety'>SAFETY</a></li>
 +
<li><a href='https://2012.igem.org/Team:Minnesota/Sponsors'>SPONSORS</a></li>
</ul>
</ul>
</div>
</div>
-
</td>
 
-
<td>
 
-
<div class="mainBox"><img src='http://i1158.photobucket.com/albums/p607/iGEM_MN/rs_main-2.png'></div>
 
-
</td></tr>
 
-
<tr><td></td></tr>
 
-
<tr><td></td></tr>
 
-
</table>
 
 +
<div class="sideSocialMediaButtons">
 +
<div style="position:absolute; left:6px; top:6px;">
 +
<a href="http://www.facebook.com/iGEM.Minnesota">
 +
<img id="fbButton" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/facebook_1.png">
 +
</a>
 +
</div>
 +
<div style="position:absolute; left:66px; top:6px;">
 +
<a href="https://twitter.com/igem_mn">
 +
<img id="twitterButton" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/twitter_1.png">
 +
</a>
 +
</div>
 +
</div> <!--End sideSocialMediaButtons-->
 +
<!--temp area for guide to social media-->
 +
<div style="position:absolute; top:420px; left:20px;font-family:Verdana;font-size:15;">
 +
Like us on FB and follow us on Twitter!
 +
</div>
 +
 +
</div> <!--End sideBarAll-->
 +
 +
<div id="MainBoxAll">
 +
 +
<div id="MainBoxContent">
 +
<img id="MainBoxContentImg" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/image1_resized.png">
 +
 +
<div class="mainContentTextBanner">
 +
Welcome to the University of Minnesota iGEM team website! Please take some time to explore around by hovering over the icons on the right for quick blurbs or navigate using the buttons to the left. We hope you enjoy learning about us and what we do!
 +
</div><!--end mainContentTextBanner-->
 +
 +
</div> <!--end mainboxcontent-->
 +
 +
<div class="rightNavButtons">
 +
 +
<div style="position:absolute;left:5px;top:0px;">
 +
<a href="#"><img id="mainRightButton1" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/welcome_maroon_txt.png"></a>
 +
</div>
 +
<div style="position:absolute;left:5px;top:75px;">
 +
<a href="https://2012.igem.org/Team:Minnesota/Project"><img id="mainRightButton2" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/projects_gold_img.png"></a>
 +
</div>
 +
<div style="position:absolute;left:5px;top:150px;">
 +
<a href="https://2012.igem.org/Team:Minnesota/Team"><img id="mainRightButton3" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/theteam_gold_img.png"></a>
 +
</div>
 +
 +
 +
</div><!--end rightNavButtons-->
 +
 +
 +
<div id="MainBoxOtherLinks">
 +
<p class="otherLinks">
 +
<a href="https://2012.igem.org/Main_Page">iGEM Home</a> | <a href="https://2012.igem.org/Team:Minnesota/Judges" style="color:red;">iGEM Judge-Click Here!</a> | <a href="https://igem.org/Team.cgi?id=814">Team Minnesota Info</a> |
 +
<a href="http://www1.umn.edu/twincities/index.html">University of Minnesota Home</a> |  <a href="https://2012.igem.org/Team:Minnesota/Contact">Contact Us!</a>
 +
</p>
 +
 +
</div> <!--end mainboxotherlinks-->
 +
 +
 +
 +
</div> <!--end mainboxall-->
 +
 +
 +
</div> <!--end content all-->
 +
 +
 +
 +
 +
 +
<div class="hidden">
 +
<script type="text/javascript">
 +
<!--//--><![CDATA[//><!--
 +
var images = new Array()
 +
function preload() {
 +
for (i = 0; i < preload.arguments.length; i++) {
 +
images[i] = new Image()
 +
images[i].src = preload.arguments[i]
 +
}
 +
}
 +
preload(
 +
"http://i1158.photobucket.com/albums/p607/iGEM_MN/image4_resized.png",
 +
"http://i1158.photobucket.com/albums/p607/iGEM_MN/image3_resized.png",
 +
"http://i1158.photobucket.com/albums/p607/iGEM_MN/image1_resized.png"
 +
)
 +
//--><!]]>
 +
</script>
 +
</div>
</body>
</body>

Latest revision as of 02:25, 4 October 2012

Team:Minnesota - Main Style Template Team:Minnesota

Like us on FB and follow us on Twitter!
Welcome to the University of Minnesota iGEM team website! Please take some time to explore around by hovering over the icons on the right for quick blurbs or navigate using the buttons to the left. We hope you enjoy learning about us and what we do!