$(document).ready(function() {
	
	$('.member-content').each(function(){
		
		if ($(this).children('p').length > 2){
			$(this).children('p:gt(2)').addClass('hidden');
			$(this).append("<div id='show-hide-button-holder'><a class='show-hide-button show-profile'>View Full Profile</a></div>");
		}

	});
	
	$('.show-hide-button').click(function(){
		
		if ($(this).hasClass('show-profile'))
		{
			$(this).parent().parent().children('p:gt(2)').removeClass('hidden');
			$(this).removeClass('show-profile');
			$(this).addClass('hide-profile');
			$(this).text("Close Profile");
		} 
		else if ($(this).hasClass('hide-profile'))
		{
			$(this).parent().parent().children('p:gt(2)').addClass('hidden');
			$(this).addClass('show-profile');
			$(this).removeClass('hide-profile');
			$(this).text("View Full Profile");
		}
		
	});
	setTimeout(function(){$('#cup').fadeIn('slow');}, 4000);
});
