/*--JavaScript for the news.aspx page--*/
 $(document).ready(function(){
    $(".accordion > li").bind("click", function(e){
        $(this).toggleClass("accordionSelected");
    });
 });
 

