From 2013.igem.org
</html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<style type="text/css">
body, input{
font-family: Arial;
font-size: 0.8em;
}
- navigation {
background-color: blue;
}
- accordion {
list-style: none;
padding: 0 0 0 0;
width: 170px;
}
- accordion li{
display: block;
font-weight: bold;
margin: 1px;
cursor: pointer;
padding: 5 5 5 7px;
list-style: circle;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
- accordion ul {
list-style: none;
padding: 0 0 0 0;
display: none;
}
- accordion ul li{
font-weight: normal;
cursor: auto;
background-color: #fff;
padding: 0 0 0 7px;
}
- accordion a {
text-decoration: none;
}
- accordion a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
- <a href="#">Home</a>
- Project
- <a href="/Team:Tuebingen/Project/Overwiew">Overview</a>
- <a href="/Team:Tuebingen/Project/Motivation">Motivation</a>
- <a href="/Team:Tuebingen/Project/Receptor">Element: Receptor</a>
- <a href="/Team:Tuebingen/Project/Inverter">Element: Inverter</a>
- <a href="/Team:Tuebingen/Project/Reporter">Element: Reporter</a>
- <a href="/Team:Tuebingen/Project/Appkication">Application</a>
- <a href="/Team:Tuebingen/Project/Safety">Safety</a>
- Team
- <a href="/Team:Tuebingen/Team/About">About Us</a>
- <a href="/Team:Tuebingen/Team/Attributions">Attributions</a>
- <a href="/Team:Tuebingen/Sponsors">Sponsors</a>
- Notebook
- <a href="/Team:Tuebingen/Notebook/Protocols">Protocols</a>
- <a href="/Team:Tuebingen/Notebook/Journal">Weekly Journal</a>
- Activities
- <a href="/Team:Tuebingen/Activities/SynBio">SynBio-Day</a>
- <a href="/Team:Tuebingen/Activities/School">School-Project</a>
- <a href="/Team:Tuebingen/Activities/Videogame">Videogame</a>
- Results
- <a href="/Team:Tuebingen/Results/Modelling">Modelling</a>
- <a href="/Team:Tuebingen/Results/Receptor">Element: Receptor</a>
- <a href="/Team:Tuebingen/Results/Inverter">Element: Inverter</a>
- <a href="/Team:Tuebingen/Results/Reporter">Element: Reporter</a>
- <a href="/Team:Tuebingen/Results/ShippedParts">Shipped Parts</a>
- <a href="/Team:Tuebingen/Contact">Contact Us</a>
<script>
$("#accordion > li").click(function(){
if(false == $(this).next().is(':visible')) {
$('#accordion > ul').slideUp(300);
}
$(this).next().slideToggle(300);
});
</script>
</body>
</html>