﻿
$(document).ready(function() {
    $("div#accordion p").toggle(function() { $(this).next().slideDown(800); }, function() { $(this).next().slideUp(800); });
    

});