$(document).ready(function() {

   $('.refineReveal').hide();

   $(".viewActivities").click(function () {
      $(this).prev().slideToggle(400);
	  $(this).text() == 'View less nearby activities' ? $(this).text('View more nearby activities') : $(this).text('View less nearby activities');
	  return false;
    });	  

   $(".viewFacilities").click(function () {
      $(this).prev().slideToggle(400);
	  $(this).text() == 'View less facilities' ? $(this).text('View more facilities') : $(this).text('View less facilities');
	  return false;
    });	  

   $(".viewEntertainment").click(function () {
      $(this).prev().slideToggle(400);
	  $(this).text() == 'View less entertainment' ? $(this).text('View more entertainment') : $(this).text('View less entertainment');	  
	  return false;
    });
   $(".viewFeatures").click(function () {
      $(this).prev().slideToggle(400);
	  $(this).text() == 'View fewer features' ? $(this).text('View more features') : $(this).text('View fewer features');	  
	  return false;
    });
    $(".viewNearby").click(function() {
        $(this).prev().slideToggle(400);
        $(this).text() == 'View fewer nearby' ? $(this).text('View more nearby') : $(this).text('View fewer nearby');
        return false;
    });
  
});

