$(function() {

  $(".edit-listing").click(function () {
    $("#listing").toggle();
    $("#edit-listing").toggle();
    $("#listing-options").toggle();
  });

  $(".rate-listing").click(function () {
    $("#rate-listing").toggle();
    $("#restaurant-ratings").toggle();
    $("#restaurant-reviews").toggle();
  });

  $(".add-link").click(function () {
    $(".add-link").toggle();
    $("#link-form").toggle();
  });

  if(window.location.hash) {
    var anchor = window.location.hash;
    if(anchor == '#rate') {
	  $("#rate-listing").toggle();
      $("#listing").toggle();
      $("#listing-options").toggle();
      $("#restaurant-ratings").toggle();
      $("#restaurant-reviews").toggle();
    }
    if(anchor == '#links') {
	  $(".add-link").toggle();
	  $("#link-form").toggle();
    }
  }

});
