$(function() {
  $('#eye-candy-frame').hover(
    function(){
      $('#eye-candy').stop().animate({'borderWidth':'3px'},{ duration : "fast",easing : "swing"});
    },
    function () {
      $('#eye-candy').stop().animate({'borderWidth':'0px'},{ duration : "fast",easing : "swing"});
    }
  );
});
