Team:Goettingen/suplement/scripts
From 2013.igem.org
$(".f-larger").click(function(){ $("p").css("font-size","16pt"); }); $(".f-smaller").click(function(){ $("p").css("font-size","12pt"); }); $("#supervisors").hide(); $("#students").hide(); $(".OurTeam").click(function(){
$("#OurTeam").show(); $("#supervisors").hide(); $("#students").hide();
}); $(".supervisors").click(function(){
$("#OurTeam").hide(); $("#supervisors").show(); $("#students").hide();
}); $(".students").click(function(){
$("#OurTeam").hide(); $("#supervisors").hide(); $("#students").show();
});