﻿$(document).ready(function () {
    var boxItems = $(".fadein");

    $(boxItems).hover(function () {
        $(this).animate({ opacity: 1.00 }, {queue: false, duration: 150});

    }, function () {
        $(this).animate({ opacity: 0.40 }, { queue: false, duration: 150 });

    });
});
