﻿$(document).ready(function() {

    $(".ChooseTech .TechItem").hover(function() {

        $(this).find(".Popup").addClass("Open");

    }, function() {

        $(this).find(".Popup").removeClass("Open");

    });

});