﻿$(function () {
    $("#services > div").hover(function () {
        $(this).addClass("hover");
    }, function () {
        $(this).removeClass("hover");
    });


    $("#services div.project").click(function () {
        location.href = "/Services/Denver/Microsoft/ProjectWork";
    });

    $("#services div.staffing").click(function () {
        location.href = "/Services/Denver/Microsoft/SupplementalStaffing";
    });
});
