$(document).ready(function() {
    $(".FaqList h2").css("cursor","pointer");    
    $(".FaqList h2").toggleClass("Close");     
    $(".FaqList h2").toggle(
                function(){                
                    $(this).removeClass()    
                    $(this).toggleClass("Open"); 
                    $(this).next("dd").toggle("blind");                        
                },
                function(){                    
                    $(this).removeClass()
                    $(this).toggleClass("Close");
                    $(this).next("dd").toggle("blind");    
                }
        );
    });