﻿$(document).ready(function() {
    $('.blue-link').hover(function() {
        $(this).css("color", "#0000FF");
        $(this).css("text-decoration", "none");
    }, function() {
        $(this).css("color", "#0000FF");
        $(this).css("text-decoration", "underline");
    });
});  
