$(document).ready(function () {
  // find the elements to be eased and hook the hover event
  $('div.images-area ul li a').hover(function() {  
    // if the element is currently being animated
    if ($(this).is(':animated')) 
            {
              $(this).stop().animate({width: "243px"}, {duration: 450, easing: "easeOutQuad", complete: "callback"});
            } 
        else 
            {
              // ease in quickly
              $(this).stop().animate({width: "243px"}, {duration: 400, easing: "easeOutQuad", complete: "callback"});
            }
  }, function () {
    // on hovering out, ease the element out
    if ($(this).is(':animated')) 
            {

                      $(this).stop().animate({width: "135px"}, {duration: 400, easing: "easeInOutQuad", complete: "callback"})

            } 
        else 
            {
              // ease out slowly
                  $(this).stop(':animated').animate({width: "135px"}, {duration: 450, easing: "easeInOutQuad", complete: "callback"});
               
            }
  });
});
