$(document).ready(function() {
  
  /*$(".thumbnail").hover(
                    function() {
                      $(".hover",this).stop()
                                      .show()
                                      .css({top:"100px",opacity:"0"})
                                      .animate({top:"95px",opacity:"1.0"});
                    },
                    function() {
                      $(".hover",this).stop()
                                      .css({top:"95px",opacity:"1.0"})
                                      .animate({top:"85px",opacity:"0"});
                    }
                  );*/
  
  $(".thumbnail").hover(
                    function() {
                      $(".hover",this).stop()
                                      .show()
                                      .css({opacity:"0",left:"-420px"})
                                      .animate({opacity:"1.0",left:0},{easing:"easeOutExpo",duration:500});
                    },
                    function() {
                      $(".hover",this).stop()
                                      .css({opacity:"1.0",left:0})
                                      .animate({opacity:"0.5",left:"-420px"},{easing:"easeOutExpo",duration:500});
                    }
                  );
});
