﻿jQuery(document).ready(function () {
    // Teaser-Right Animation
    $(".teaser").css({
}).mouseenter(function () {
    $(this).stop().animate({
        height: "245px"
    }, "slow");
}).mouseleave(function () {
    $(this).stop().animate({
        height: "176px"
    }, "slow");
});
});
