﻿$(document).ready(function () {
    $('#devblog img').hover(function () {
        $(this).attr("src", "/Content/Images/DevBlogSelected.png");
    }, function () {
        $(this).attr("src", "/Content/Images/DevBlogNormal.png");
    });
});
