Team:Minnesota

From 2013.igem.org

(Difference between revisions)
 
(19 intermediate revisions not shown)
Line 25: Line 25:
-
//Right nav button functions
+
//main page image switcher
$("#mainRightButton1").hover(
$("#mainRightButton1").hover(
     function() {
     function() {
-
       $(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/theteam_maroon_txt.png");
+
       $(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/welcome_maroon_txt.png");
-
       //$("#MainBoxContentImg").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/image1_resized.png");
+
       $("#mainRightButton2").attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/projects_gold_img.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!");
+
      $("#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's 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 our project!");
     },           
     },           
-
     function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/theteam_maroon_img.png");}
+
     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(
$("#mainRightButton2").hover(
     function() {
     function() {
-
       $(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/students_gold_txt.png");
+
       $(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("Our team is working on projects that both help to scientifically develop the field of synthetic biology and make it more accessible to the public! This year, we are designing a vector system to express human insulin in Pichia pastoris. Check the project page on the left to learn more!");
     },           
     },           
-
     function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/students_gold_img.png");}
+
     function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/projects_maroon_img.png");}
);
);
$("#mainRightButton3").hover(
$("#mainRightButton3").hover(
     function() {
     function() {
-
       $(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/mentorsprofessors_gold_txt.png");
+
       $(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://i791.photobucket.com/albums/yy194/GopheriGEM/Goldiestatuebutton_zps0bcdfdaa.jpg");
 +
      $(".mainContentTextBanner").text("We are a dedicated team of students coming from a range of different backgrounds at the University of Minnesota - Twin Cities. Check the team page on the left to learn more about each of us!");
     },           
     },           
-
     function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/mentorsprofessors_gold_img.png");}
+
     function() {$(this).attr("src","http://i1158.photobucket.com/albums/p607/iGEM_MN/theteam_maroon_img.png");}
);
);
Line 54: Line 67:
//social media button switchers
//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(
$("#twitterButton").hover(
Line 73: Line 82:
<style type="text/css">
<style type="text/css">
 +
</style>
</style>
 +
 +
<script type="text/javascript">
 +
function displayDate()
 +
{
 +
var currentDate = new Date();
 +
var compDate = new Date(2013,10,4,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>
Line 83: Line 115:
<div id="MainBannerImage">
<div id="MainBannerImage">
-
<img src="http://i1158.photobucket.com/albums/p607/iGEM_MN/MainBanner_trans.png">
+
<img src="http://img20.imageshack.us/img20/35/19hf.png">
</div>
</div>
<div id="MainBanner">
<div id="MainBanner">
Line 91: Line 123:
<div class="sideNavBar2">
<div class="sideNavBar2">
<ul>
<ul>
-
<li><a href='https://2013.igem.org/Team:Minnesota'>HOME</a></li>
+
<li><a class="current" href='https://2013.igem.org/Team:Minnesota'>HOME</a></li>
-
<li><a class="current" href='https://2013.igem.org/Team:Minnesota/Team'>TEAM</a></li>
+
<li><a href='https://2013.igem.org/Team:Minnesota/Team'>TEAM</a></li>
<li><a href='https://2013.igem.org/Team:Minnesota/Project'>PROJECT</a></li>
<li><a href='https://2013.igem.org/Team:Minnesota/Project'>PROJECT</a></li>
-
<li><a href='https://2013.igem.org/Team:Minnesota/Software'>SOFTWARE</a></li>
+
<!-- 2013 edit <li><a href='https://2013.igem.org/Team:Minnesota/Software'>SOFTWARE</a></li> -->
<li><a href='https://2013.igem.org/Team:Minnesota/Notebook'>NOTEBOOK</a></li>
<li><a href='https://2013.igem.org/Team:Minnesota/Notebook'>NOTEBOOK</a></li>
<li><a href='https://2013.igem.org/Team:Minnesota/Attributions'>ATTRIBUTIONS</a></li>
<li><a href='https://2013.igem.org/Team:Minnesota/Attributions'>ATTRIBUTIONS</a></li>
Line 104: Line 136:
<div class="sideSocialMediaButtons">
<div class="sideSocialMediaButtons">
-
<div style="position:absolute; left:6px; top:6px;">
 
-
<a href="http://www.facebook.com/GopheriGEM2013">
 
-
<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;">
+
<div style="position:absolute; left:36px; top:6px;">
<a href="https://twitter.com/GopheriGEM">
<a href="https://twitter.com/GopheriGEM">
<img id="twitterButton" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/twitter_1.png">
<img id="twitterButton" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/twitter_1.png">
Line 118: Line 145:
<!--temp area for guide to social media-->
<!--temp area for guide to social media-->
-
<div style="position:absolute; top:420px; left:20px;font-family:Verdana;font-size:15;">
+
<div style="position:absolute; top:440px; left:20px;font-family:Verdana;font-size:15;">
-
Like us on FB and follow us on Twitter!
+
Follow us on Twitter!
</div>
</div>
Line 127: Line 154:
<div id="MainBoxContent">
<div id="MainBoxContent">
-
<img id="MainBoxContentImg" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/team_image_resized.png">
+
<img id="MainBoxContentImg" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/image1_resized.png">
<div class="mainContentTextBanner">
<div class="mainContentTextBanner">
-
Welcome to our team page! Our team is composed of great, enthusiastic, science-loving people! Use the icons on the right to find out more!
+
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 mainContentTextBanner-->
Line 138: Line 165:
<div style="position:absolute;left:5px;top:0px;">
<div style="position:absolute;left:5px;top:0px;">
-
<a href="#"><img id="mainRightButton1" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/theteam_maroon_img.png"></a>
+
<a href="#"><img id="mainRightButton1" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/welcome_maroon_txt.png"></a>
</div>
</div>
<div style="position:absolute;left:5px;top:75px;">
<div style="position:absolute;left:5px;top:75px;">
-
<a href="https://2013.igem.org/Team:Minnesota/Team_Students"><img id="mainRightButton2" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/students_gold_img.png"></a>
+
<a href="https://2013.igem.org/Team:Minnesota/Project"><img id="mainRightButton2" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/projects_gold_img.png"></a>
</div>
</div>
<div style="position:absolute;left:5px;top:150px;">
<div style="position:absolute;left:5px;top:150px;">
-
<a href="https://2013.igem.org/Team:Minnesota/Team_Mentors_Advisors"><img id="mainRightButton3" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/mentorsprofessors_gold_img.png"></a>
+
<a href="https://2013.igem.org/Team:Minnesota/Team"><img id="mainRightButton3" src="http://i1158.photobucket.com/albums/p607/iGEM_MN/theteam_gold_img.png"></a>
</div>
</div>
Line 153: Line 180:
<div id="MainBoxOtherLinks">
<div id="MainBoxOtherLinks">
<p class="otherLinks">
<p class="otherLinks">
-
<a href="https://2013.igem.org/Main_Page">iGEM Home</a> | <a href="https://2013.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="https://igem.org/2013_Judging_Form?id=1187">iGEM Home</a> | <a href="https://igem.org/2013_Judging_Form?id=1187" style="color:red;">iGEM Judge-Click Here!</a> | <a href="https://igem.org/Team.cgi?id=1187">Team Minnesota Info</a> |  
<a href="http://www1.umn.edu/twincities/index.html">University of Minnesota Home</a> |  <a href="https://2013.igem.org/Team:Minnesota/Contact">Contact Us!</a>
<a href="http://www1.umn.edu/twincities/index.html">University of Minnesota Home</a> |  <a href="https://2013.igem.org/Team:Minnesota/Contact">Contact Us!</a>
</p>
</p>
</div> <!--end mainboxotherlinks-->
</div> <!--end mainboxotherlinks-->
 +
Line 181: Line 209:
preload(
preload(
"http://i1158.photobucket.com/albums/p607/iGEM_MN/image4_resized.png",
"http://i1158.photobucket.com/albums/p607/iGEM_MN/image4_resized.png",
-
 
+
"http://i791.photobucket.com/albums/yy194/GopheriGEM/Goldiestatuebutton_zps0bcdfdaa.jpg",
 +
"http://i1158.photobucket.com/albums/p607/iGEM_MN/image1_resized.png"
)
)
//--><!]]>
//--><!]]>

Latest revision as of 03:52, 28 September 2013

Team:Minnesota - Main Style Template Team:Minnesota

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!