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

    $('.rollOverImageLink:disabled').find('.baseImage').hide();
    $('.rollOverImageLink:disabled').find('.disabledImage').show();
});
