/*global $, Ext */

var ProjectMenu = {
  init: function() {
    this.hide_everything();
    this.fade_in_images();
  },

  hide_everything: function() {
    $('div.photo_before').hide();
    $('div.photo_after').hide();
    
  },

  fade_in_images: function() {
    $('div.photo_before').fadeIn();
    $('div.photo_after').animate({opacity: 1.0}, 200).fadeIn(2000);
  }
};

$(function() {
  ProjectMenu.init();
});
