Team:RHIT/Modeling
From 2012.igem.org
(Difference between revisions)
Line 14: | Line 14: | ||
$('#logged_in').show(); | $('#logged_in').show(); | ||
} | } | ||
+ | $('#rhit-sheet2').hide(); | ||
}); | }); | ||
+ | function planningPage () { | ||
+ | $('#rhit-blueSheet').show(); | ||
+ | $('#rhit-redSheet').hide(); | ||
+ | $('#rhit-grnSheet').hide(); | ||
+ | } | ||
+ | function diffeqPage () { | ||
+ | $('#rhit-blueSheet').hide(); | ||
+ | $('#rhit-redSheet').show(); | ||
+ | $('#rhit-grnSheet').hide(); | ||
+ | } | ||
+ | function stochasticPage () { | ||
+ | $('#rhit-blueSheet').hide(); | ||
+ | $('#rhit-redSheet').hide(); | ||
+ | $('#rhit-grnSheet').show(); | ||
+ | } | ||
+ | function cursor_Link () { | ||
+ | $(document).body.style.cursor = 'pointer'; | ||
+ | } | ||
+ | function cursor_Reset () { | ||
+ | $(document).body.style.cursor = "default"; | ||
+ | } | ||
</script> | </script> | ||
</head> | </head> | ||
Line 43: | Line 65: | ||
<a href="/Team:RHIT/Sponsors">Sponsors</a> | <a href="/Team:RHIT/Sponsors">Sponsors</a> | ||
</div> | </div> | ||
- | <div class="rhit- | + | <div class="rhit-dividers"> |
- | + | <a href="javascript:void(0)" onclick="planningPage()"> | |
+ | <div class="rhit-blueDivider"> | ||
+ | Planning Process | ||
+ | </div> | ||
+ | </a> | ||
+ | <a href="javascript:void(0)" onclick="diffeqPage()"> | ||
+ | <div class="rhit-redDivider"> | ||
+ | Differential Model | ||
+ | </div> | ||
+ | </a> | ||
+ | <a href="javascript:void(0)" onclick="stochasticPage()"> | ||
+ | <div class="rhit-grnDivider"> | ||
+ | Stochastic Model | ||
+ | </div> | ||
+ | </a> | ||
+ | </div> | ||
+ | <div class="rhit-sheets"> | ||
+ | <div class="rhit-blueSheet" id="rhit-blueSheet"> | ||
+ | Planning/Process text | ||
+ | </div></a> | ||
+ | <div class="rhit-redSheet" id="rhit-redSheet"> | ||
+ | Differential text | ||
+ | </div> | ||
+ | <div class="rhit-grnSheet" id="rhit-grnSheet"> | ||
+ | Stochastic text | ||
+ | </div> | ||
</div> | </div> | ||
</div> | </div> | ||
</body> | </body> | ||
</html> | </html> |
Revision as of 17:30, 31 July 2012