﻿// built with a JQuery-1.2.6.js
// allows for fading and with half the code pretty cool.
$(document).ready(function()
{
    $('.rollOverImageLink:enabled').hover(function()
        {
            $(this).find('.overImage').fadeIn('medium');
        },
        function()
        {
            $(this).find('.overImage').fadeOut('medium');
        }
    );
    
    
});