(function() {
  var index;
  window.App.Views.Index = Backbone.View.extend({
    el: $('body'),
    events: {
      'hover #connect': 'show',
      'click #panel': 'hide'
    },
    initialize: function() {
      _.bindAll(this, 'render', 'show', 'hide');
      return this.render();
    },
    render: function() {},
    show: function() {
      return $('#panel').css({
        top: "40px"
      });
    },
    hide: function() {
      return $('#panel').css({
        top: "-240px"
      });
    }
  });
  index = new App.Views.Index();
}).call(this);

