$(document).ready(function () {
    $(".Cat").mouseover(function () {
        //$(this).find(".textCat").css("top", "142px");
        $(this).find(".textCat").stop().animate({
            top: "142px"
        });
    }).mouseout(function () {
        //$(this).find(".textCat").css("top", "155px");
        $(this).find(".textCat").stop().animate({
            top: "155px"
        });
    });

    $("a[rel=openImage]").live('click', function () {
        var link = $(this).attr("href");
        $("#main").load(link + " #main");
        return false;
    });
});
