﻿// built with a JQuery-1.2.6.js
// allows for fading and with half the code pretty cool.
$(document).ready(function()
{
	//<![CDATA[
	var is_ie6 = (
	window.external &&
	typeof window.XMLHttpRequest == "undefined"
	);
	//]]>
	

    $('.rollOverImageLink:enabled').hover(function()
        {
            $(this).find('.overImage').fadeIn('slow');
        },
        function()
        {
            $(this).find('.overImage').fadeOut('slow');
        }
    );
    
    if(!is_ie6) {
    
    $('.rollOverImageLink:disabled').find('.baseImage').hide();
    
    $('.rollOverImageLink:disabled').find('.disabledImage').show();
    
	}
	
});