/*
  Made by Jase for Sam with love and tea.
  Now imagine hiring us together, it would be tantricfantastic. Blows ya mind huh?
  Boom fo' real - http://jasoncale.com
*/

(function ($) {  
  $.fn.extend({
    fadeToggle: function(speed, easing, callback) { 
       return this.animate({opacity: 'toggle'}, speed, easing, callback); 
    },
    
    gridView: function (grid_selector) {
      var _grid = $(grid_selector);
      if (_grid) {
        _grid.click(function () {
          $(this).fadeOut();
          return false;
        }); 
        $(this).click(function () {
          _grid.fadeToggle('slow');
          return false;
        });
      }
    },
    
    lookingGlass: function() {
      $(this).draggable().hover(function () {
        $(this).parent().addClass('profilepic-active');
        $(this).unbind('hover');
      });
    }
  });
})(jQuery);

jQuery(document).ready(function($) {
  $('a.show_grid').gridView('#grid');
  $("#sambrown").lookingGlass(); // Oh hai!
});