﻿// 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();        },        function()        {            $(this).find('.overImage').fadeOut('slow');        }    );    $('.rollOverImageLink:disabled').find('.baseImage').hide();    $('.rollOverImageLink:disabled').find('.disabledImage').show();});
