﻿/// <reference path="jquery-1.4.1-vsdoc.js" />
$(document).ready(function () {
    SetupHover();
});


function SetupHover() {
    $("div.projectimage")
        .mouseenter(function () {
            $(this).find("img.hover").stop(true, true).fadeIn(); //slideDown(300);
        })
        .mouseleave(function () {
            $(this).find("img.hover").stop(true, true).fadeOut(); //slideUp("fast");
        }).click(function () {
            window.location.href = $(this).closest(".project_content").find("a").attr("href");

        }).css("cursor", "pointer");
}
