﻿$(document).ready(function() 
    {
        $('.gvOdd').hover(function () {
            $(this).animate({ backgroundColor: '#e8e8e8' }, 250);
        }, function() {
            $(this).animate({ backgroundColor: '#fff' }, 250);
        });

        $('.gvEven').hover(function () {
            $(this).animate({ backgroundColor: '#e8e8e8' }, 250);
        }, function() {
            $(this).animate({ backgroundColor: '#f1ede2' }, 250);
        });  
    }
);



