Team:Northwestern/Templates/trial
From 2011.igem.org
(Difference between revisions)
(138 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__<html> | __NOTOC__<html> | ||
+ | <head> | ||
+ | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | ||
+ | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.js"></script> | ||
+ | <script type='text/javascript' src='http://www.srcf.ucam.org/~wac26/iGEM/jquery.lavalamp-1.3.4b.js'></script> | ||
+ | <script type='text/javascript' src='http://www.srcf.ucam.org/~wac26/iGEM/jquery.easing.1.3.js'></script> | ||
+ | |||
+ | <link href='http://fonts.googleapis.com/css?family=Nobile:regular,bold' rel='stylesheet' type='text/css'> | ||
+ | |||
+ | <script type="text/javascript"> | ||
+ | $('.left-menu ul')[0].innerHTML="<li><a href=\"https://2011.igem.org\" style=\"font-weight:bold; text-transform:none\">iGEM Home</a></li>"+$('.left-menu ul')[0].innerHTML; | ||
+ | $(function() { | ||
+ | $('ul.llmenu').lavaLamp({ speed: 300, autoReturn: true , target:'li'}); | ||
+ | }); | ||
+ | $(function(){ | ||
+ | $('ul#accmenu').accordion({ | ||
+ | header:'.head', | ||
+ | fillSpace:false, | ||
+ | autoHeight:false, | ||
+ | navigation:true, | ||
+ | animated: 'easeslide'}) | ||
+ | }); | ||
+ | </script> | ||
- | |||
<style type="text/css"> | <style type="text/css"> | ||
.firstHeading { | .firstHeading { | ||
display:none;} | display:none;} | ||
- | /*---whole background---*/ | + | /*---whole background---url("https://static.igem.org/mediawiki/2011/9/93/Background_texture.jpg")*/ |
#globalWrapper{ | #globalWrapper{ | ||
- | background:#000000 url("https://static.igem.org/mediawiki/2011/9/93/Background_texture.jpg") center top | + | background:#000000 url("https://static.igem.org/mediawiki/2011/9/93/Background_texture.jpg") center top repeat fixed; |
+ | padding-bottom:00px; | ||
+ | border: none; | ||
+ | } | ||
#top-section { | #top-section { | ||
Line 39: | Line 63: | ||
/*---whole content---*/ | /*---whole content---*/ | ||
+ | |||
#content{ | #content{ | ||
- | background:transparent url("https://static.igem.org/mediawiki/2010/a/a0/Transppa.png") left top | + | background:transparent url("https://static.igem.org/mediawiki/2010/a/a0/Transppa.png") left top repeat; |
padding: 0px; | padding: 0px; | ||
margin:0 auto; | margin:0 auto; | ||
Line 62: | Line 87: | ||
/*---modifier:all lower columns||| (ref. 3col site )---*/ | /*---modifier:all lower columns||| (ref. 3col site )---*/ | ||
#main2 { | #main2 { | ||
- | margin:0; padding:0;background:transparent; | + | margin:0; padding:0;background:#transparent; |
} | } | ||
/*---left col---*/ | /*---left col---*/ | ||
Line 68: | Line 93: | ||
float:left; | float:left; | ||
width:150px; | width:150px; | ||
- | margin:0; padding: | + | margin:0px 0px 0px 0; padding:00px; |
- | background:transparent; | + | background:#transparent; |
font-size:100%; | font-size:100%; | ||
} | } | ||
- | /*---middle col---*/ | + | /*---middle col CHANGE THE MARGIN FOR SPACE---*/ |
#middle { | #middle { | ||
- | margin-left: | + | margin-left:190px; |
- | background: | + | background:transparent; |
font-size:100%; | font-size:100%; | ||
} | } | ||
.column-in { | .column-in { | ||
- | margin: | + | margin:-11px 0px 0px 0px; padding:0.5em 1em; |
} | } | ||
.cleaner { | .cleaner { | ||
Line 100: | Line 125: | ||
</style> | </style> | ||
+ | </script> | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | < | + | <!-- addeddeeddeeddeeddeeddeedd --> |
+ | <script type="text/javascript" src="http://www.p51labs.com/accordion/combine.php?type=javascript&files=prototype.js,effects.js,accordion.js,code_highlighter.js,javascript.js,html.js"></script> | ||
+ | <link rel="stylesheet" type="text/css" href="http://www.p51labs.com/accordion/css/default.css" /> | ||
+ | |||
+ | <script type="text/javascript"> | ||
+ | // | ||
+ | // In my case I want to load them onload, this is how you do it! | ||
+ | // | ||
+ | Event.observe(window, 'load', loadAccordions, false); | ||
- | <style type="text/css"> | + | |
- | # | + | // |
- | + | // Set up all accordions | |
- | + | // | |
+ | function loadAccordions() { | ||
+ | var topAccordion = new accordion('horizontal_container', { | ||
+ | classNames : { | ||
+ | toggle : 'horizontal_accordion_toggle', | ||
+ | toggleActive : 'horizontal_accordion_toggle_active', | ||
+ | content : 'horizontal_accordion_content' | ||
+ | }, | ||
+ | defaultSize : { | ||
+ | width : 525 | ||
+ | }, | ||
+ | direction : 'horizontal' | ||
+ | }); | ||
+ | |||
+ | var bottomAccordion = new accordion('vertical_container'); | ||
+ | |||
+ | var nestedVerticalAccordion = new accordion('vertical_nested_container', { | ||
+ | classNames : { | ||
+ | toggle : 'vertical_accordion_toggle', | ||
+ | toggleActive : 'vertical_accordion_toggle_active', | ||
+ | content : 'vertical_accordion_content' | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | // Open first one | ||
+ | bottomAccordion.activate($$('#vertical_container .accordion_toggle')[0]); | ||
+ | |||
+ | // Open second one | ||
+ | topAccordion.activate($$('#horizontal_container .horizontal_accordion_toggle')[2]); | ||
+ | } | ||
+ | |||
+ | </script> | ||
+ | |||
+ | <!-- CSS --> | ||
+ | <style type="text/css" > | ||
+ | |||
+ | /* | ||
+ | Vertical Accordions #87F717 | ||
+ | */ | ||
+ | |||
+ | .accordion_toggle { | ||
+ | display: block; | ||
+ | height: 30px; | ||
width: 180px; | width: 180px; | ||
- | + | background: url(https://static.igem.org/mediawiki/2011/b/b1/Green_btn.gif) no-repeat; | |
- | padding: | + | padding: 0 10px 0 10px; |
- | border: 0px | + | line-height: 30px; |
+ | color: #ffffff; | ||
+ | font-weight: normal; | ||
+ | text-decoration: none; | ||
+ | outline: none; | ||
+ | font-size: 12px; | ||
+ | color: #ffffff; | ||
+ | border-bottom: none; | ||
+ | cursor: pointer; | ||
+ | margin: 0px 0px 0px -10px; | ||
} | } | ||
- | |||
+ | .accordion_toggle h1 hover{ | ||
+ | background: #e0542f; | ||
+ | } | ||
- | + | .accordion_toggle_active { | |
- | + | background: url(https://static.igem.org/mediawiki/2011/c/ce/Blue_btn.gif) no-repeat; | |
- | + | width: 150px; | |
- | + | color: #ffffff; | |
- | + | } | |
- | + | ||
- | { | + | .accordion_content { |
- | + | background-color: none; | |
+ | width: 150px; | ||
+ | color: #444444; | ||
+ | overflow: hidden; | ||
+ | } | ||
+ | |||
+ | .accordion_content h2 { | ||
+ | margin: 15px 0 5px 10px; | ||
+ | color: #0099FF; | ||
} | } | ||
- | ); | + | |
- | + | .accordion_content p { | |
+ | line-height: 150%; | ||
+ | padding: 15px 0 5px 10px; | ||
+ | } | ||
+ | |||
+ | .vertical_accordion_toggle { | ||
+ | display: block; | ||
+ | height: 30px; | ||
+ | width: 150px; | ||
+ | background: u; | ||
+ | padding: 0 10px 0 10px; | ||
+ | line-height: 30px; | ||
+ | color: #ffffff; | ||
+ | font-weight: normal; | ||
+ | text-decoration: none; | ||
+ | outline: none; | ||
+ | font-size: 12px; | ||
+ | color: #000000; | ||
+ | border-bottom: 1px solid #cde99f; | ||
+ | cursor: pointer; | ||
+ | margin: 0 0 0 0; | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | .vertical_accordion_toggle_active { | ||
+ | background: #e0542f; | ||
+ | color: #ffffff; | ||
+ | border-bottom: 1px solid #f68263; | ||
+ | } | ||
+ | |||
+ | .vertical_accordion_content { | ||
+ | background-color: #ffffff; | ||
+ | color: #444444; | ||
+ | overflow: hidden; | ||
+ | } | ||
+ | |||
+ | .vertical_accordion_content h2 { | ||
+ | margin: 15px 0 5px 10px; | ||
+ | color: #0099FF; | ||
+ | } | ||
+ | |||
+ | .vertical_accordion_content p { | ||
+ | line-height: 150%; | ||
+ | padding: 5px 10px 15px 10px; | ||
+ | } | ||
+ | |||
+ | |||
+ | </style> | ||
+ | |||
+ | |||
+ | |||
+ | <!-- Added --> | ||
+ | <style type="text/css"> | ||
+ | |||
+ | /*Credits: Dynamic Drive CSS Library */ | ||
+ | /*URL: http://www.dynamicdrive.com/style/ */ | ||
+ | |||
+ | .sidebarmenu ul{ | ||
+ | margin: 0px; | ||
+ | padding: 0px; | ||
+ | list-style-type: none; | ||
+ | font: 13px Verdana; | ||
+ | width: 160px; /* Main Menu Item widths */ | ||
+ | border-bottom: 0px; | ||
+ | } | ||
+ | |||
+ | .sidebarmenu ul li{ | ||
+ | position: relative; | ||
+ | padding: 0px 0px 6px 10px ; | ||
+ | } | ||
+ | |||
+ | /* Top level menu links style */ | ||
+ | .sidebarmenu ul li a{ | ||
+ | display: block; | ||
+ | overflow: auto; /*force hasLayout in IE7 */ | ||
+ | color: black; | ||
+ | text-decoration: none; | ||
+ | padding: 6px; | ||
+ | |||
+ | } | ||
+ | |||
+ | .sidebarmenu ul li a:link, .sidebarmenu ul li a:visited, .sidebarmenu ul li a:active{ | ||
+ | background: none; /*background of tabs (default state)*/ | ||
+ | } | ||
+ | <!-- #e0542f color of the clicked parent taburl(https://static.igem.org/mediawiki/2011/d/d0/Smallbluebtn2.jpg) | ||
+ | clicked is #FBB917--> | ||
+ | |||
+ | .sidebarmenu ul li a:visited{ | ||
+ | color: white; | ||
+ | } | ||
+ | |||
+ | .sidebarmenu ul li a:hover{ | ||
+ | background: url(https://static.igem.org/mediawiki/2011/9/92/Smallorngbtn.jpg); | ||
+ | } | ||
+ | |||
+ | /*Sub level menu items */ | ||
+ | .sidebarmenu ul li ul{ | ||
+ | position: absolute; | ||
+ | width: 120px; /*Sub Menu Items width */ | ||
+ | top: 0px; | ||
+ | visibility: hidden; | ||
+ | |||
+ | } | ||
+ | |||
+ | .sidebarmenu a.subfolderstyle{ | ||
+ | background: url(right.gif) no-repeat 97% 50%; | ||
+ | } | ||
+ | |||
+ | |||
+ | /* Holly Hack for IE \*/ | ||
+ | * html .sidebarmenu ul li { float: left; height: 1%; } | ||
+ | * html .sidebarmenu ul li a { height: 1%; } | ||
+ | /* End */ | ||
+ | |||
+ | </style> | ||
+ | |||
+ | <script type="text/javascript"> | ||
+ | |||
+ | //Nested Side Bar Menu (Mar 20th, 09) | ||
+ | //By Dynamic Drive: http://www.dynamicdrive.com/style/ | ||
+ | |||
+ | var menuids=["sidebarmenu1"] //Enter id(s) of each Side Bar Menu's main UL, separated by commas | ||
+ | |||
+ | function initsidebarmenu(){ | ||
+ | for (var i=0; i<menuids.length; i++){ | ||
+ | var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul") | ||
+ | for (var t=0; t<ultags.length; t++){ | ||
+ | ultags[t].parentNode.getElementsByTagName("a")[0].className+=" subfolderstyle" | ||
+ | if (ultags[t].parentNode.parentNode.id==menuids[i]) //if this is a first level submenu | ||
+ | ultags[t].style.left=ultags[t].parentNode.offsetWidth+"px" //dynamically position first level submenus to be width of main menu item | ||
+ | else //else if this is a sub level submenu (ul) | ||
+ | ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px" //position menu to the right of menu item that activated it | ||
+ | ultags[t].parentNode.onmouseover=function(){ | ||
+ | this.getElementsByTagName("ul")[0].style.display="block" | ||
+ | } | ||
+ | ultags[t].parentNode.onmouseout=function(){ | ||
+ | this.getElementsByTagName("ul")[0].style.display="none" | ||
+ | } | ||
+ | } | ||
+ | for (var t=ultags.length-1; t>-1; t--){ //loop through all sub menus again, and use "display:none" to hide menus (to prevent possible page scrollbars | ||
+ | ultags[t].style.visibility="visible" | ||
+ | ultags[t].style.display="none" | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | if (window.addEventListener) | ||
+ | window.addEventListener("load", initsidebarmenu, false) | ||
+ | else if (window.attachEvent) | ||
+ | window.attachEvent("onload", initsidebarmenu) | ||
+ | |||
+ | </script> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <script type="text/javascript" src="/Team:Cambridge/lightbox/js?action=raw"></script> | ||
+ | <style> | ||
+ | /** | ||
+ | * jQuery lightBox plugin | ||
+ | * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/) | ||
+ | * and adapted to me for use like a plugin from jQuery. | ||
+ | * @name jquery-lightbox-0.5.css | ||
+ | * @author Leandro Vieira Pinho - http://leandrovieira.com | ||
+ | * @version 0.5 | ||
+ | * @date April 11, 2008 | ||
+ | * @category jQuery plugin | ||
+ | * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com) | ||
+ | * @license CCAttribution-ShareAlike 2.5 Brazil - http://creativecommons.org/licenses/by-sa/2.5/br/deed.en_US | ||
+ | * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin | ||
+ | */ | ||
+ | #jquery-overlay { | ||
+ | position: absolute; | ||
+ | top: 0; | ||
+ | left: 0; | ||
+ | z-index: 90; | ||
+ | width: 100%; | ||
+ | height: 500px; | ||
+ | } | ||
+ | #jquery-lightbox { | ||
+ | position: absolute; | ||
+ | top: 0; | ||
+ | left: 0; | ||
+ | width: 100%; | ||
+ | z-index: 100; | ||
+ | text-align: center; | ||
+ | line-height: 0; | ||
+ | } | ||
+ | #jquery-lightbox a img { border: none; } | ||
+ | #lightbox-container-image-box { | ||
+ | position: relative; | ||
+ | background-color: #fff; | ||
+ | width: 250px; | ||
+ | height: 250px; | ||
+ | margin: 0 auto; | ||
+ | } | ||
+ | #lightbox-container-image { padding: 10px; } | ||
+ | #lightbox-loading { | ||
+ | position: absolute; | ||
+ | top: 40%; | ||
+ | left: 0%; | ||
+ | height: 25%; | ||
+ | width: 100%; | ||
+ | text-align: center; | ||
+ | line-height: 0; | ||
+ | } | ||
+ | #lightbox-nav { | ||
+ | position: absolute; | ||
+ | top: 0; | ||
+ | left: 0; | ||
+ | height: 100%; | ||
+ | width: 100%; | ||
+ | z-index: 10; | ||
+ | } | ||
+ | #lightbox-container-image-box > #lightbox-nav { left: 0; } | ||
+ | #lightbox-nav a { outline: none;} | ||
+ | #lightbox-nav-btnPrev, #lightbox-nav-btnNext { | ||
+ | width: 49%; | ||
+ | height: 100%; | ||
+ | zoom: 1; | ||
+ | display: block; | ||
+ | } | ||
+ | #lightbox-nav-btnPrev { | ||
+ | left: 0; | ||
+ | float: left; | ||
+ | } | ||
+ | #lightbox-nav-btnNext { | ||
+ | right: 0; | ||
+ | float: right; | ||
+ | } | ||
+ | #lightbox-container-image-data-box { | ||
+ | font: 10px Verdana, Helvetica, sans-serif; | ||
+ | background-color: #fff; | ||
+ | margin: 0 auto; | ||
+ | line-height: 1.4em; | ||
+ | overflow: auto; | ||
+ | width: 100%; | ||
+ | padding: 0 10px 0; | ||
+ | } | ||
+ | #lightbox-container-image-data { | ||
+ | padding: 0 10px; | ||
+ | color: #666; | ||
+ | } | ||
+ | #lightbox-container-image-data #lightbox-image-details { | ||
+ | width: 70%; | ||
+ | float: left; | ||
+ | text-align: left; | ||
+ | } | ||
+ | #lightbox-image-details-caption { font-weight: bold; } | ||
+ | #lightbox-image-details-currentNumber { | ||
+ | display: block; | ||
+ | clear: left; | ||
+ | padding-bottom: 1.0em; | ||
+ | } | ||
+ | #lightbox-secNav-btnClose { | ||
+ | width: 66px; | ||
+ | float: right; | ||
+ | padding-bottom: 0.7em; | ||
+ | } | ||
+ | |||
+ | </style> | ||
+ | <script> | ||
+ | $(document).ready(function() { | ||
+ | $('a.lightbox').lightBox(); // Select all links with lightbox class | ||
+ | $('a.image').each(function(idx, item) { | ||
+ | var src = item.firstChild.src; | ||
+ | src=src.replace(/wiki\/images\/thumb\/(.+)\/(.+)\/(.+)\/(.+)\..../,"wiki/images/$1/$2/$3"); | ||
+ | item.href=src; | ||
+ | }); | ||
+ | $('a.image').lightBox(); | ||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
Line 141: | Line 518: | ||
</head> | </head> | ||
+ | |||
+ | |||
+ | <div id="the side banner" style="position:fixed;top:0;left:01.3em;margin: 15px 15px 0 0"> | ||
+ | <div id="swiggle"> | ||
+ | |||
+ | <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="160" height="150" id="NU logo" align="left"> | ||
+ | <param name="allowScriptAccess" value="sameDomain" /> | ||
+ | <param name="allowFullScreen" value="false" /> | ||
+ | <param name="movie" value=" | ||
+ | https://static.igem.org/mediawiki/2011/5/57/Test1.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /> <embed src=" | ||
+ | https://static.igem.org/mediawiki/2011/5/57/Test1.swf" quality="high" bgcolor="#ffffff" width="160" height="150" name="baner_final_sin_btn" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> | ||
+ | </object> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
+ | <div id="return-to-igem" style="position:fixed;top:0;right:0;margin: 0px 0px 15px 15px; "><a href="https://2011.igem.org"><img src="https://static.igem.org/mediawiki/2011/5/50/Mini_igem_return.gif" width="100" height="70" alt="RETURN TO IGEM 2010" /></a> | ||
+ | </div> | ||
+ | |||
+ | |||
+ | |||
<body> | <body> | ||
- | <div id=" | + | <div id="main1"> |
- | <a href="https:// | + | <div id="header"> |
+ | <a href="https://2011.igem.org/Team:Northwestern"><img src="https://static.igem.org/mediawiki/2011/e/e9/NUbanner_new2.jpg" height = "240px" width="965px" style="opacity:1;filter:alpha(opacity=100)" alt="NU-igem logo"/ border="0"></a> | ||
</div> | </div> | ||
+ | <div id="main2"> | ||
+ | <!-- div id="left" style="background-color:#E3E4FA;margin: 5px 0px 0px 5px; width:200px; height:1000px"--> | ||
+ | <div id="left" style="margin: 5px 0px 0px 5px; width:200px"><div class="column-in"> | ||
+ | |||
+ | <div id="container"> | ||
+ | |||
+ | <div id="vertical_container" > | ||
+ | |||
+ | <h1 class="accordion_toggle">PROJECT | ||
+ | <div id="team_img" style="top:0;right:0;margin: -26px 0px 100px 132px; "><img src="https://static.igem.org/mediawiki/2011/e/e0/Project_btn2.gif" width="22" height="20"/> | ||
+ | </div> | ||
+ | </h1> | ||
+ | <div class="accordion_content"> | ||
+ | |||
+ | <div class="sidebarmenu"> | ||
+ | <ul id="sidebarmenu1"> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Project/Introduction">Introduction</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Project/Background">Background</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Project/Description">Project Description</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Project/Modelling">Modelling</a></li> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | |||
+ | <h1 class="accordion_toggle">RESULTS | ||
+ | <div id="team_img" style="top:0;right:0;margin: -27px 0px 100px 132px; "><img src="https://static.igem.org/mediawiki/2011/3/30/Parts_btn.gif" width="19" height="21"/> | ||
+ | </div> | ||
+ | </h1> | ||
+ | <div class="accordion_content"> | ||
+ | <div id="horizontal_container"></div> | ||
+ | <div class="sidebarmenu"> | ||
+ | <ul id="sidebarmenu1"> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Results/Summary">Summary</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Results/Data">Data</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Results/Biobricks">Biobricks</a></li> | ||
+ | |||
+ | </ul> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <h1 class="accordion_toggle">CONSIDERATIONS | ||
+ | <div id="team_img" style="top:0;right:0;margin: -25.5px 0px 100px 133px; "><img src="https://static.igem.org/mediawiki/2011/8/86/Consideration_btn.gif" width="19" height="19"/> | ||
+ | </div> | ||
+ | </h1> | ||
+ | <div class="accordion_content"> | ||
+ | <div class="sidebarmenu"> | ||
+ | <ul id="sidebarmenu1"> | ||
+ | |||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Considerations/Application">Application</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Considerations/HumanPractices">Human Practices</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Considerations/Safety">Safety</a></li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <h1 class="accordion_toggle">ABOUT US | ||
+ | <div id="team_img" style="top:0;right:0;margin: -25px 0px 100px 131px; "><img src="https://static.igem.org/mediawiki/2011/0/0a/Team_btn3.gif" width="20" height="19"/> | ||
+ | </div> | ||
+ | </h1> | ||
+ | <div class="accordion_content"> | ||
+ | |||
+ | <div class="sidebarmenu"> | ||
+ | <ul id="sidebarmenu1"> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/AboutUs/Undergrads">Students</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/AboutUs/Advisers">Advisers</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/AboutUs/Photos">Photo Gallery</a></li> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | <h1 class="accordion_toggle">NOTEBOOK | ||
+ | <div id="team_img" style="top:0;right:0;margin: -26px 0px 100px 135px; "><img src="https://static.igem.org/mediawiki/2011/9/93/Notebook_btn2.gif" width="16" height="19"/> | ||
+ | </div> | ||
+ | </h1> | ||
+ | <div class="accordion_content"> | ||
+ | |||
+ | <div class="sidebarmenu"> | ||
+ | <ul id="sidebarmenu1"> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Brainstorming">Brainstorming</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Protocols">Protocols</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week1">Week 1</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week2">Week 2</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week3">Week 3</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week4">Week 4</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week5">Week 5</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week6">Week 6</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week7">Week 7</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week8">Week 8</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week9">Week 9</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week10">Week 10</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week11">Week 11</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Notebook/Week12">Week 12</a></li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | <h1 class="accordion_toggle">ATTRIBUTIONS | ||
+ | <div id="team_img" style="top:0;right:0;margin: -25px 0px 100px 133px; "><img src="https://static.igem.org/mediawiki/2011/b/be/Attribution_btn.gif" width="19" height="18"/> | ||
+ | </div> | ||
+ | </h1> | ||
+ | <div class="accordion_content"> | ||
+ | <div class="sidebarmenu"> | ||
+ | <ul id="sidebarmenu1"> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Attributions/University">University</a></li> | ||
+ | <li><a href="https://2011.igem.org/Team:Northwestern/Attributions/Sponsors">Sponsors</a></li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | <script type="text/javascript" > | ||
+ | |||
+ | // | ||
+ | // You can hide the accordions on page load like this, it maintains accessibility | ||
+ | // | ||
+ | // Special thanks go out to Rafay Faruqi | ||
+ | // | ||
+ | var verticalAccordions = $$('.accordion_toggle'); | ||
+ | verticalAccordions.each(function(accordion) { | ||
+ | $(accordion.next(0)).setStyle({ | ||
+ | height: '0px' | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | |||
+ | </script> | ||
+ | <script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script> | ||
+ | <script type="text/javascript">_uacct = "UA-624845-2";urchinTracker();</script> | ||
+ | </div></div> | ||
+ | <div id="middle"><div class="column-in"> | ||
- | </ | + | <!-- |
+ | <div id="header" style="margin: 15px 0px 0px 0px;"> | ||
+ | <img src="https://static.igem.org/mediawiki/2011/c/c9/Top_banner.jpg" height = "70" width="400px" style="opacity:1;filter:alpha(opacity=100)" alt="NU-igem logo"/ border="0"> | ||
+ | <div style="margin: -52px 0px 0px 20px;font:30px helvetica"> RAFAY | ||
+ | </div></div> --> |
Latest revision as of 22:37, 26 October 2011