// JavaScript Document

$(document).ready(function(){
  $(".full").hide();
  $(".toggle").click(
  function(){
	if($(this).next().css("display")=="none" ){
		$(this).parent().find(".full").animate({ height: 'hide', opacity: 'hide' }, 'slow');
		$(this).parent().find(".toggle").text("Read Less");
		$(this).next().animate({ height: 'show', opacity: 'show' }, 'slow');
	}else{
		$(this).parent().find(".toggle").text("Read More");
		$(this).next().animate({ height: 'hide', opacity: 'hide' }, 'slow');
	} 
  }
  );
});