﻿
$(document).ready(function () {

  //== IMAGE EFFECTS
  $(".img-fader img").fadeTo("fast", 1.0);
  $(".img-fader img").hover(function () {
    $(this).fadeTo("fast", 0.9);
  }, function () {
    $(this).fadeTo("fast", 1.0);
  });

  //== CORNERS w/ PARENT
  $("#wrap-outer").corner("round 4px");

});
