﻿
$( document ).ready( function() {

    var fadeToBlack = function()
    {
        $(this).highlightFade({
        
            attr:'color',
            start:'#979798',
            end:'#575757'
        
        });
    }

    var fadeToGrey = function()
    {
        $(this).highlightFade({        
            attr:'color',
            start:'#575757',
            end:'#979798'
        
        }).highlightFade({ 
            attr:'background-color', 
            start:'white', 
            end:'white' 
        });
    }


    $(".testimonial a").mouseover( fadeToBlack );
    $(".testimonial a").mouseout( fadeToGrey );

} );
