﻿$('#links a').hover(
            function () {
                $(this).fadeTo('slow', 1);
            },
            function () {
                $(this).fadeTo('slow', 0.5);
            });
