$(document).ready(function() {
	$('.status').hide();

	$('.more').toggle(function() {
		$(this).next().show();
		$(this).html('View Less');
	},function() {
		$(this).next().hide();
		$(this).html('View More');
	});
});
