$(document).ready(function() {
    $(".accordion").accordion({
        autoheight: false,
        navigation: true,
        header: '.title',
        animated: 'easeslide'
    });
});
/*
jQuery(document).ready(function() {
    jQuery('.accordion').click(function() {
        jQuery(this).next().toggle();
        return false;
    }).next().hide();
});
*/

