﻿$(document).ready(function(){
    $('#accordion h3').each(
    function(i) {    
        var content = $(this).next();
        
        content.find('a:last').click(function() {
            scrollTop();
        });        
        
        content.hide();         
        
        $(this).children(0).click(function() {
             var others = content.siblings("div:visible");
             if (others.length) {
                others.slideUp('slow',function() {
                    content.slideToggle('slow');
                });
             } else {
                content.slideToggle('slow');
             }
             return false;
        });  
              
    });
});
