﻿$(document).ready(function() {
    if (jQuery.browser.msie && jQuery.browser.version <= "7.0") {  

$(".project-popup-left a").hover(function () {

    $(this).next("div").stop(true, true).animate({ opacity: "show", top: "-210" }, "slow");
}, function () {
    $(this).next("div").animate({ opacity: "hide", top: "-230" }, "fast");
});

$(".project-popup-middle a").hover(function () {

    $(this).next("div").stop(true, true).animate({ opacity: "show", top: "-210" }, "slow");
}, function () {
    $(this).next("div").animate({ opacity: "hide", top: "-230" }, "fast");
});

$(".project-popup-right a").hover(function () {

    $(this).next("div").stop(true, true).animate({ opacity: "show", top: "-210" }, "slow");
}, function () {
    $(this).next("div").animate({ opacity: "hide", top: "-230" }, "fast");
});

} else {


    $(".project-popup-left a").hover(function () {

        $(this).next("div").stop(true, true).animate({ opacity: "show", top: "-350" }, "slow");
    }, function () {
        $(this).next("div").animate({ opacity: "hide", top: "-370" }, "fast");
    });

    $(".project-popup-middle a").hover(function () {

        $(this).next("div").stop(true, true).animate({ opacity: "show", top: "-350" }, "slow");
    }, function () {
        $(this).next("div").animate({ opacity: "hide", top: "-370" }, "fast");
    });

    $(".project-popup-right a").hover(function () {

        $(this).next("div").stop(true, true).animate({ opacity: "show", top: "-350" }, "slow");
    }, function () {
        $(this).next("div").animate({ opacity: "hide", top: "-370" }, "fast");
    });
}

});
