jQuery(function($) {
	
	$('.viewmore').click(function(){
	
	  // $(this).hide();
	   $('.content').show();

	   $('.hideviewmore').show();
	   
	   return false;
	});



	$('.hideviewmore').click(function(){
	
	   $(this).hide();
	   $('.content').hide();
	   $('.viewmore').show();
	   return false;
	});
	
	
	});