﻿$(document).ready(function() {
    $(".featured_div2").mouseover(function() {
        $(this).css("background-image", "url('nva/img/home/border.png')");
    });
    $(".featured_div2").mouseout(function() {
        $(this).css("background-image", "url('')");
    });
});
