function newsBehav(){

//hide all article body
$("#content_column .content:gt(1)").hide();

//add click text after each title
$("#content_column .stand_red:gt(1)").append(
'<br /><span style="color:#3d92fa; font-size:small;"><a class="readBody" href="" title="Read article">Click to show article</a></span>'
);

//add click behaviour to each link
$("#content_column .stand_red a").click(function(event){

   $(this).closest("p").next().toggle();

   if (($(this).closest("p").next().css("display")) != "none") {
       $(this).text("Click to hide article");
       $(this).attr("title", "Hide article");
   }
   else {
       $(this).text("Click to show article");
       $(this).attr("title","Read article");
   }

   event.preventDefault();
});

}


