// JavaScript Document
$(function () {
  $('img.pedro').hover(function () {
    this.src = 'images/peeps/pedro-over.jpg';
  }, function () {
    this.src = 'images/peeps/pedro.jpg';
  });
  $('img.diana').hover(function () {
    this.src = 'images/peeps/diana-over.jpg';
  }, function () {
    this.src = 'images/peeps/diana.jpg';
  });
  $('img.kristen').hover(function () {
    this.src = 'images/peeps/kristen-over.jpg';
  }, function () {
    this.src = 'images/peeps/kristen.jpg';
  });
  $('img.michelle').hover(function () {
    this.src = 'images/peeps/michelle-over.jpg';
  }, function () {
    this.src = 'images/peeps/michelle.jpg';
  });
  $('img.ralph').hover(function () {
    this.src = 'images/peeps/ralph-over.jpg';
  }, function () {
    this.src = 'images/peeps/ralph.jpg';
  });
});


