(function() {
  var switch_tabs;
  $(function() {
    $("#submit").click(function() {
      return $(this).parent("form").submit();
    });
    $("#services a").click(function() {
      return switch_tabs($(this).attr("href"));
    });
    return switch_tabs(window.location.hash || "#consulting");
  });
  switch_tabs = function(anchor) {
    var name;
    name = anchor.substr(1);
    $(".details").hide();
    $("#services li").removeClass("selected");
    $("li." + name).addClass("selected");
    return $("#" + name).show();
  };
}).call(this);

