$().ready(function(){
    $('.tInfoLayer1').hover(function() {
        
        if(document.all && !window.opera) {
            $(this).children('.oInfoLayer1').show();
        } else {
            $(this).children('.oInfoLayer1').fadeIn('slow');
        }
        
    }, function () {
        
        if(document.all && !window.opera) {
            $(this).children('.oInfoLayer1').hide();
        } else {
            $(this).children('.oInfoLayer1').fadeOut('slow');
        }
        
    });
});