/*
 * Copyright: 2010
 * Creator: style-nes
 * URL: style-nes.com
 * Email: style-nes@ya.ru
*/

$(document).ready(function(){
    
    $(".accordion h4").click(function(){
        $(this).next("p").slideToggle("slow")
        .siblings("p:visible").slideUp("slow");
        $(this).toggleClass("active");
        $(this).siblings("h4").removeClass("active");
    });

});
