$(function() {
  $("#socials") .scrollFollow( {
    speed: 700,
    offset: 80
  } );

  $("#socials_small") .scrollFollow( {
    speed: 700,
    offset: 80
  } );


  $("#login") .scrollFollow( {
    speed: 700,
    offset: 80
  } );

  /*$("#keywords").accordion({ header: "a.keywordlinks", active: false, autoHeight: false });*/

  //hide the all of the element with class msg_body
  $(".keyword_text").hide();
  //toggle the componenet with class msg_body
  $(".keyword_head").click(function()
  {
    $(this).next(".keyword_text").slideToggle(400);
  });
});

