function expandNews() {
  $(".inlineNews li .text").hide();
  $(this).find(".text").show();
  $(".inlineNews li").click(expandNews);
  
  $(this).unbind('click');
  return false;
};
