$(document).ready(function() {

	var $fullHeight = $(".box .paragraphs p").height();
	//alert('The height is ' + $fullHeight );

	$(".box .paragraphs p").css("height", "65px");
	
	$('#view-more').click(function () {
		var arrow = $(this);
		var $height = $(".paragraphs p").height();
	//alert('The height is ' + $height );
		if	($height == 65) {
			$(".paragraphs p").animate( { height: $fullHeight}, 500 );
			arrow.html("HIDE").css("background-position","right -12px");
			addMasterHeight($fullHeight);
		}else {
			$(".paragraphs p").animate( { height: "65px"}, 500 );
			arrow.html("MORE").css("background-position","right 2px");
			backMasterHeight($fullHeight);
		}
	});

});	

