$(document).ready(function(){
						  

      $("#index_contents_expand").click(function(){
										  
	  $("#content-short").hide();
	  $("#content-expand").show();

	  });
	  
	   $("#index_contents_short").click(function(){
										  
	  $("#content-short").show();
	  $("#content-expand").hide();

	  });


});

