﻿$(document).ready(function() {
    $('.top-link').hover(function() {
        $(this).css("color", "#3895f1");
    }, function() {
        $(this).css("color", "#3c3c3c");
    });
});        
