$(document).ready(function() {
						   
  //hide the all of the element with class msg_body
  $(".search").hide();
  //toggle the componenet with class msg_body
  $("#search-btn").click(function()
	  {
		$(this).next(".search").slideToggle(300);
	  });

	$( '.arrowleft' ).scrollFollow( {
       speed: 800,
	   easing: 'swing',
	   container: 'content',
	   offset: 300
      } );
	$( '.arrowright' ).scrollFollow( {
       speed: 800,
	   easing: 'swing',
	   container: 'content',
	   offset: 300
      } );
  
});
