// JavaScript Document
$(document).ready(function(){

                //Shows a pointer when they hovering over the heading

                $('h4:not(.heading)').mouseover(function(){

                                $(this).css("cursor","pointer")

                                });

                

                //Shows \Hides the body of the FAQ questions shown

                $('h4:not(.heading)').bind('click',function(){

                                $(this).next('div').toggle();

                });

});

 
