﻿$(window).load(
    function(){
        $('.HoverImage').hover(
            function(){$(this).find('.HoverOver').fadeIn('slow');},
            function(){$(this).find('.HoverOver').fadeOut('slow');}
        )
    }
);

