﻿$(document).ready(function () {

$('#showcase').cycle();

    $(".hover").mouseover(function () {
        $(this).nextAll(".fade").stop(true, true).animate({
        marginTop: '120px'
        }, 200);
        $(this).next("h2").stop(true, true).animate({
            opacity: 1
        }, 200);
    });

        $(".hover").mouseout(function () {
            $(this).nextAll(".fade").stop(true, true).animate({
                marginTop: '151px',
            }, 200);
            $(this).next("h2").stop(true, true).animate({
                opacity: 0
            }, 200);
    });
});
