Template:Sheffield/scripts/biology

$(document).ready(function() {


     $(".heading,.final,.brick,.growth,.iron,.siderephores,.reporters,.protocols").hide();
           
     $(".heading").show(function(){
       $(".final").show(function(){
         $(".brick").show(function(){
             $(".growth").show(function(){
                  $(".iron").show(function(){ 
                     $(".siderephores").show(function(){
                         $(".reporters").show(function(){
                            $(".protocols").show();
                         });
                     });
                  });
             });
        });
       });
     });



$(".small-section-cell").hover( function(){ $(this).addClass("active",250); }, function(){ $(this).removeClass("active",250); } );

$(".backToTop").click(function() { $("html, body").animate({ scrollTop: 0 }, "slow"); return false; });

$(".backToTop").hover( function(){ $(this).animate({height: '120px'}); }, function(){ $(this).animate({height: '100px'}); } ); });