﻿
$(document).ready(function() {
    $(".hoverEffect").css({
        "overflow": "hidden",
        "height": "146px"
    });
    $(".overLayer").hover(function() {
        $(this).stop().animate({ "top": "0px" }, 'fast', 'easeinout');
        $(this).dequeue()
    },
    function() {
        $(this).stop().animate({ "top": "100px" }, '800', 'backout');
    });

});





